public class PlotEntryContentProvider extends java.lang.Object implements IEntryContentProvider
Constructor and Description |
---|
PlotEntryContentProvider(java.lang.String parent)
The default constructor.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Returns a clone of this PlotEntryContentProvider.
|
boolean |
equals(IEntryContentProvider otherProvider)
This operation checks to see if this PlotEntryContentProvider is equal to
an input IEntryContentProvider.
|
java.util.ArrayList<java.lang.String> |
getAllowedValues()
This operation returns a list of allowed values.
|
AllowedValueType |
getAllowedValueType()
This operation retrieves the description of the types of values that are
stored in an instance of the Entry class.
|
java.lang.String |
getDefaultValue()
This operation retrieves the default String for the value of instances of
the Entry class.
|
java.lang.String |
getParent()
Returns the name of the parent.
|
java.lang.String |
getTag()
Returns the tag.
|
int |
hashCode()
Compute and return the hash code for instances of this object
|
void |
setAllowedValues(java.util.ArrayList<java.lang.String> allowedValues) |
void |
setAllowedValueType(AllowedValueType type)
Sets the AllowedValueType.
|
void |
setDefaultValue(java.lang.String defaultValue)
Sets the default value.Can not be null! (Can be the empty string!)
|
void |
setParent(java.lang.String parentName)
Sets the name of the parent.
|
void |
setTag(java.lang.String tagValue)
Sets the tag.Can be set to null.
|
public PlotEntryContentProvider(java.lang.String parent)
parent
- A String representing the parent group of plots.public java.util.ArrayList<java.lang.String> getAllowedValues()
getAllowedValues
in interface IEntryContentProvider
public void setAllowedValues(java.util.ArrayList<java.lang.String> allowedValues)
setAllowedValues
in interface IEntryContentProvider
allowedValues
- The allowedValues. Can not be null.
public java.lang.String getDefaultValue()
getDefaultValue
in interface IEntryContentProvider
The returned value.
public AllowedValueType getAllowedValueType()
getAllowedValueType
in interface IEntryContentProvider
The returned value.
public void setAllowedValueType(AllowedValueType type)
IEntryContentProvider
Sets the AllowedValueType.
setAllowedValueType
in interface IEntryContentProvider
type
- The allowedValueType to set.
public void setParent(java.lang.String parentName)
IEntryContentProvider
Sets the name of the parent. Can not be null.
setParent
in interface IEntryContentProvider
parentName
- The name of the parent.
public java.lang.String getParent()
IEntryContentProvider
Returns the name of the parent.
getParent
in interface IEntryContentProvider
The returned value.
public boolean equals(IEntryContentProvider otherProvider)
equals
in interface IEntryContentProvider
otherProvider
- The IEntryContentProvider to check if this is equal to.public int hashCode()
hashCode
in interface IEntryContentProvider
hashCode
in class java.lang.Object
The returned value.
public java.lang.String getTag()
IEntryContentProvider
Returns the tag.
getTag
in interface IEntryContentProvider
The returned value.
public void setTag(java.lang.String tagValue)
IEntryContentProvider
Sets the tag.Can be set to null.
setTag
in interface IEntryContentProvider
tagValue
- The tag value to set.
public void setDefaultValue(java.lang.String defaultValue)
IEntryContentProvider
Sets the default value.Can not be null! (Can be the empty string!)
setDefaultValue
in interface IEntryContentProvider
defaultValue
- The default value to set.
public java.lang.Object clone()
clone
in interface IEntryContentProvider
clone
in class java.lang.Object
A clone of the IEntryContentProvider.