Class: Archsight::Query::AST::KindTarget

Inherits:
Object
  • Object
show all
Defined in:
lib/archsight/query/ast.rb

Overview

Relation target: a kind name (identifier)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(kind_name) ⇒ KindTarget

Returns a new instance of KindTarget.



220
221
222
# File 'lib/archsight/query/ast.rb', line 220

def initialize(kind_name)
  @kind_name = kind_name
end

Instance Attribute Details

#kind_nameObject (readonly)

Returns the value of attribute kind_name.



218
219
220
# File 'lib/archsight/query/ast.rb', line 218

def kind_name
  @kind_name
end