Class: Archsight::Query::AST::KindTarget
- Inherits:
-
Object
- Object
- Archsight::Query::AST::KindTarget
- Defined in:
- lib/archsight/query/ast.rb
Overview
Relation target: a kind name (identifier)
Instance Attribute Summary collapse
-
#kind_name ⇒ Object
readonly
Returns the value of attribute kind_name.
Instance Method Summary collapse
-
#initialize(kind_name) ⇒ KindTarget
constructor
A new instance of KindTarget.
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_name ⇒ Object (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 |