Class: Hatemile::Util::Css::StyleSheetDeclaration Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/hatemile/util/css/style_sheet_declaration.rb

Overview

This class is abstract.

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

Direct Known Subclasses

Rcp::RCPDeclaration

Instance Method Summary collapse

Instance Method Details

#get_propertyString

This method is abstract.

Returns the property of declaration.

Returns:

  • (String)

    The property of declaration.



53
54
55
# File 'lib/hatemile/util/css/style_sheet_declaration.rb', line 53

def get_property
  # Interface method
end

#get_valueString

This method is abstract.

Returns the value of declaration.

Returns:

  • (String)

    The value of declaration.



35
36
37
# File 'lib/hatemile/util/css/style_sheet_declaration.rb', line 35

def get_value
  # Interface method
end

#get_valuesArray<String>

This method is abstract.

Returns a list with the values of declaration.

Returns:

  • (Array<String>)

    The list with the values of declaration.



44
45
46
# File 'lib/hatemile/util/css/style_sheet_declaration.rb', line 44

def get_values
  # Interface method
end