Module: InterMine::PathQuery::TemplateConstraint

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#editableObject

Returns the value of attribute editable.



1041
1042
1043
# File 'lib/intermine/query.rb', line 1041

def editable
  @editable
end

#switchableObject

Returns the value of attribute switchable.



1041
1042
1043
# File 'lib/intermine/query.rb', line 1041

def switchable
  @switchable
end

Instance Method Details

#template_param_opObject



1050
1051
1052
# File 'lib/intermine/query.rb', line 1050

def template_param_op
    return @op
end

#to_elemObject



1043
1044
1045
1046
1047
1048
# File 'lib/intermine/query.rb', line 1043

def to_elem
    attributes = {"editable" => @editable, "switchable" => @switchable}
    elem = super
    elem.add_attributes(attributes)
    return elem
end