Class: Rex::Parser::GraphML::AttributeContainer
- Inherits:
-
Object
- Object
- Rex::Parser::GraphML::AttributeContainer
- Defined in:
- lib/rex/parser/graphml.rb
Overview
A base class for GraphML elements that are capable of storing attributes.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#attributes ⇒ Object
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize ⇒ AttributeContainer
constructor
A new instance of AttributeContainer.
Constructor Details
#initialize ⇒ AttributeContainer
Returns a new instance of AttributeContainer.
113 114 115 |
# File 'lib/rex/parser/graphml.rb', line 113 def initialize @attributes = {} end |
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes.
119 120 121 |
# File 'lib/rex/parser/graphml.rb', line 119 def attributes @attributes end |