Module: InterMine::PathQuery::TemplateConstraint

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#editableObject

Returns the value of attribute editable.



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

def editable
  @editable
end

#switchableObject

Returns the value of attribute switchable.



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

def switchable
  @switchable
end

Instance Method Details

#template_param_opObject



1054
1055
1056
# File 'lib/intermine/query.rb', line 1054

def template_param_op
    return @op
end

#to_elemObject



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

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