class Hatemile::Util::Css::StyleSheetDeclaration

The StyleSheetDeclaration interface contains the methods for access the CSS declaration.

@abstract

Public Instance Methods

get_property() click to toggle source

Returns the property of declaration.

@abstract @return [String] The property of declaration.

# File lib/hatemile/util/css/style_sheet_declaration.rb, line 53
def get_property
  # Interface method
end
get_value() click to toggle source

Returns the value of declaration.

@abstract @return [String] The value of declaration.

# File lib/hatemile/util/css/style_sheet_declaration.rb, line 35
def get_value
  # Interface method
end
get_values() click to toggle source

Returns a list with the values of declaration.

@abstract @return [Array<String>] The list with the values of declaration.

# File lib/hatemile/util/css/style_sheet_declaration.rb, line 44
def get_values
  # Interface method
end