Class: CSDL::Target
- Inherits:
-
Struct
- Object
- Struct
- CSDL::Target
- Defined in:
- lib/csdl/targets.rb
Overview
A CSDL Target definition with indication as to where the target can be used.
Instance Attribute Summary collapse
-
#analysis? ⇒ Boolean
True if the target is availble for use as an Analysis Target.
-
#interaction? ⇒ Boolean
True if the target is availble for use in an Interaction Filter.
-
#name ⇒ String
The name of the target.
-
#query? ⇒ Boolean
True if the target is availble for use in a Query Filter.
-
#values ⇒ Object
Returns the value of attribute values.
Instance Attribute Details
#analysis? ⇒ Boolean
True if the target is availble for use as an Analysis Target.
14 15 16 |
# File 'lib/csdl/targets.rb', line 14
def analysis?
@analysis?
end
|
#interaction? ⇒ Boolean
True if the target is availble for use in an Interaction Filter.
14 15 16 |
# File 'lib/csdl/targets.rb', line 14
def interaction?
@interaction?
end
|
#name ⇒ String
The name of the target.
14 15 16 |
# File 'lib/csdl/targets.rb', line 14 def name @name end |
#query? ⇒ Boolean
True if the target is availble for use in a Query Filter.
14 15 16 |
# File 'lib/csdl/targets.rb', line 14
def query?
@query?
end
|
#values ⇒ Object
Returns the value of attribute values
14 15 16 |
# File 'lib/csdl/targets.rb', line 14 def values @values end |