Class: Arel::Visitors::Dot::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/arel/visitors/dot.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#fieldsObject

Returns the value of attribute fields.



6
7
8
# File 'lib/arel/visitors/dot.rb', line 6

def fields
  @fields
end

#idObject

Returns the value of attribute id.



6
7
8
# File 'lib/arel/visitors/dot.rb', line 6

def id
  @id
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/arel/visitors/dot.rb', line 6

def name
  @name
end