Class: Arel::Visitors::Dot::Node
- Inherits:
-
Object
- Object
- Arel::Visitors::Dot::Node
- Defined in:
- lib/arel/visitors/dot.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#fields ⇒ Object
Returns the value of attribute fields.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, id, fields = []) ⇒ Node
constructor
A new instance of Node.
Constructor Details
#initialize(name, id, fields = []) ⇒ Node
Returns a new instance of Node.
8 9 10 11 12 |
# File 'lib/arel/visitors/dot.rb', line 8 def initialize name, id, fields = [] @name = name @id = id @fields = fields end |
Instance Attribute Details
#fields ⇒ Object
Returns the value of attribute fields.
6 7 8 |
# File 'lib/arel/visitors/dot.rb', line 6 def fields @fields end |
#id ⇒ Object
Returns the value of attribute id.
6 7 8 |
# File 'lib/arel/visitors/dot.rb', line 6 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/arel/visitors/dot.rb', line 6 def name @name end |