Package org.intermine.plugin.project
Class UserProperty
- java.lang.Object
-
- org.intermine.plugin.project.UserProperty
-
public class UserProperty extends java.lang.ObjectBean to hold property elements from project.xml files.
-
-
Constructor Summary
Constructors Constructor Description UserProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLocation()Get the locationjava.lang.StringgetName()Return the namejava.lang.StringgetValue()Set the property valuebooleanisLocation()Return true if and only if the location is setvoidsetLocation(java.lang.String location)Set the property locationvoidsetName(java.lang.String name)Set the namevoidsetValue(java.lang.String value)Set the property value
-
-
-
Method Detail
-
setName
public void setName(java.lang.String name)
Set the name- Parameters:
name- the name
-
getName
public java.lang.String getName()
Return the name- Returns:
- the name
-
getValue
public java.lang.String getValue()
Set the property value- Returns:
- the value
-
getLocation
public java.lang.String getLocation()
Get the location- Returns:
- the location
-
setValue
public void setValue(java.lang.String value)
Set the property value- Parameters:
value- the value
-
setLocation
public void setLocation(java.lang.String location)
Set the property location- Parameters:
location- the new location
-
isLocation
public boolean isLocation()
Return true if and only if the location is set- Returns:
- true if this property has a location
-
-