Class: Node

Inherits:
Object
  • Object
show all
Defined in:
lib/openehr/parser/opt_parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(parent = nil) ⇒ Node

Returns a new instance of Node.



306
307
308
309
# File 'lib/openehr/parser/opt_parser.rb', line 306

def initialize(parent = nil)
  @parent = parent
  @path = '/' if parent.nil?
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



303
304
305
# File 'lib/openehr/parser/opt_parser.rb', line 303

def id
  @id
end

#parentObject (readonly)

Returns the value of attribute parent.



304
305
306
# File 'lib/openehr/parser/opt_parser.rb', line 304

def parent
  @parent
end

#pathObject

Returns the value of attribute path.



303
304
305
# File 'lib/openehr/parser/opt_parser.rb', line 303

def path
  @path
end

Instance Method Details

#root?Boolean

Returns:

  • (Boolean)


311
312
313
# File 'lib/openehr/parser/opt_parser.rb', line 311

def root?
  parent.nil?
end