Module: InterMine::PathQuery::TemplateConstraint
- Included in:
- TemplateListConstraint, TemplateLookupConstraint, TemplateLoopConstraint, TemplateMultiValueConstraint, TemplateSingleValueConstraint, TemplateUnaryConstraint
- Defined in:
- lib/intermine/query.rb
Instance Attribute Summary collapse
-
#editable ⇒ Object
Returns the value of attribute editable.
-
#switchable ⇒ Object
Returns the value of attribute switchable.
Instance Method Summary collapse
Instance Attribute Details
#editable ⇒ Object
Returns the value of attribute editable.
949 950 951 |
# File 'lib/intermine/query.rb', line 949 def editable @editable end |
#switchable ⇒ Object
Returns the value of attribute switchable.
949 950 951 |
# File 'lib/intermine/query.rb', line 949 def switchable @switchable end |
Instance Method Details
#template_param_op ⇒ Object
958 959 960 |
# File 'lib/intermine/query.rb', line 958 def template_param_op return @op end |
#to_elem ⇒ Object
951 952 953 954 955 956 |
# File 'lib/intermine/query.rb', line 951 def to_elem attributes = {"editable" => @editable, "switchable" => @switchable} elem = super elem.add_attributes(attributes) return elem end |