|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.ptc.windchill.ws.PropertyDescription
public class PropertyDescription
The PropertyDescription class is a bean class that describes the
detailed characteristics of a business object property.
Supported API: true
Extendable: false
| Constructor Summary | |
|---|---|
PropertyDescription()
Constructs a new PropertyDescription. |
|
| Method Summary | |
|---|---|
String |
getDefaultLocalizedValue()
Returns the default localized value of this property. |
String |
getDefaultValue()
Returns the default value of this property. |
String |
getLabel()
Returns the label associated with this property. |
String[] |
getLocalizedValues()
Returns a list of localized values corresponding to this property's enumerated values. |
String |
getLocalizedValues(int i)
Returns a localized value by index. |
String[] |
getLongDescriptions()
Returns a list of long descriptions corresponding to this property's enumerated values. |
String |
getLongDescriptions(int i)
Returns a long description by index. |
String[] |
getLongLabels()
Returns a list of long labels corresponding to this property's enumerated values. |
String |
getLongLabels(int i)
Returns a long label by index. |
String |
getLowerLimit()
Returns the lower limit constraint of this property if there is one. |
String |
getName()
Returns the property name. |
boolean |
getRequired()
Returns whether or not this property is required. |
boolean[] |
getSelectable()
Returns an array of booleans corresponding to enumerated values that indicate whether or not a particular value is selectable. |
boolean |
getSelectable(int i)
Returns the selectability of a particular enumerated value by index. |
String[] |
getShortDescriptions()
Returns a list of short descriptions corresponding to this property's enumerated values. |
String |
getShortDescriptions(int i)
Returns a short description by index. |
String[] |
getShortLabels()
Returns a list of short labels corresponding to this property's enumerated values. |
String |
getShortLabels(int i)
Returns a short label by index. |
String[] |
getStringValues()
Returns a list of string values corresponding to this property's enumerated values. |
String |
getStringValues(int i)
Returns a string value by index. |
String |
getSyntax()
Returns the syntax of this property. |
String |
getUpperLimit()
Returns the upper limit constraint of this property if there is one. |
String[] |
getValues()
Returns a list of enumerated values for this property if there are any. |
String |
getValues(int i)
Returns an enumerated value by index. |
void |
setDefaultLocalizedValue(String defaultLocalizedValue)
Sets the default localized value of this property. |
void |
setDefaultValue(String defaultValue)
Sets the default value of this property. |
void |
setLabel(String label)
Sets the label associated with this property. |
void |
setLocalizedValues(int i,
String localizedValue)
Sets a localized value by index. |
void |
setLocalizedValues(String[] localizedValues)
Sets a list of localized values corresponding to this property's enumerated values. |
void |
setLongDescriptions(int i,
String longDescription)
Sets a long description by index. |
void |
setLongDescriptions(String[] longDescriptions)
Sets a list of long descriptions corresponding to this property's enumerated values. |
void |
setLongLabels(int i,
String longLabel)
Sets a long label by index. |
void |
setLongLabels(String[] longLabels)
Sets a list of long labels corresponding to this property's enumerated values. |
void |
setLowerLimit(String lowerLimit)
Sets the lowere limit constraint of this property. |
void |
setName(String name)
Sets the property name. |
void |
setRequired(boolean required)
Sets whether or not this property is required. |
void |
setSelectable(boolean[] selectable)
Sets a list of boolean values corresponding to this property's enumerated values indicating selectability. |
void |
setSelectable(int i,
boolean selectable)
Sets the selectability of a particular enumerated value by index. |
void |
setShortDescriptions(int i,
String shortDescription)
Sets a short description by index. |
void |
setShortDescriptions(String[] shortDescriptions)
Sets a list of short descriptions corresponding to this property's enumerated values. |
void |
setShortLabels(int i,
String shortLabel)
Sets a short label by index. |
void |
setShortLabels(String[] shortLabels)
Sets a list of short labels corresponding to this property's enumerated values. |
void |
setStringValues(int i,
String stringValue)
Sets a string value by index. |
void |
setStringValues(String[] stringValues)
Sets a list of string values corresponding to this property's enumerated values. |
void |
setSyntax(String syntax)
Sets the syntax of this property. |
void |
setUpperLimit(String upperLimit)
Sets the upper limit constraint of this property. |
void |
setValues(int i,
String value)
Sets an enumerated value by index. |
void |
setValues(String[] values)
Sets a list of enumerated values for this property. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public PropertyDescription()
| Method Detail |
|---|
public String getName()
public void setName(String name)
name - The property name.public String getSyntax()
public void setSyntax(String syntax)
syntax - The new syntax.public String getLabel()
public void setLabel(String label)
label - The label.public String getUpperLimit()
public void setUpperLimit(String upperLimit)
upperLimit - The new upper limit.public String getLowerLimit()
public void setLowerLimit(String lowerLimit)
lowerLimit - The new lower limit.public boolean getRequired()
public void setRequired(boolean required)
required - The new required value.public String getDefaultValue()
public void setDefaultValue(String defaultValue)
defaultValue - The new default value.public String getDefaultLocalizedValue()
public void setDefaultLocalizedValue(String defaultLocalizedValue)
defaultLocalizedValue - The new default localized value.public String[] getValues()
public void setValues(String[] values)
values - The new values.public String getValues(int i)
i - The index.
public void setValues(int i,
String value)
i - The index.value - The new value.public String[] getLocalizedValues()
public void setLocalizedValues(String[] localizedValues)
localizedValues - The new localized values.public String getLocalizedValues(int i)
i - The index.
public void setLocalizedValues(int i,
String localizedValue)
i - The index.localizedValue - The new localized value.public String[] getStringValues()
public void setStringValues(String[] stringValues)
stringValues - The new string values.public String getStringValues(int i)
i - The index.
public void setStringValues(int i,
String stringValue)
i - The index.stringValue - The new string value.public boolean[] getSelectable()
public void setSelectable(boolean[] selectable)
selectable - The new selectability of this property's enumerated values.public boolean getSelectable(int i)
i - The index.
public void setSelectable(int i,
boolean selectable)
i - The index.selectable - The selectability of the corresponding enumerated value.public String[] getShortLabels()
public void setShortLabels(String[] shortLabels)
shortLabels - The new short labels.public String getShortLabels(int i)
i - The index.
public void setShortLabels(int i,
String shortLabel)
i - The index.shortLabel - The new short label.public String[] getLongLabels()
public void setLongLabels(String[] longLabels)
longLabels - The long labels.public String getLongLabels(int i)
i - The index.
public void setLongLabels(int i,
String longLabel)
i - The index.longLabel - The new long label.public String[] getShortDescriptions()
public void setShortDescriptions(String[] shortDescriptions)
shortDescriptions - The new short descriptions.public String getShortDescriptions(int i)
i - The index.
public void setShortDescriptions(int i,
String shortDescription)
i - The index.shortDescription - The new short description.public String[] getLongDescriptions()
public void setLongDescriptions(String[] longDescriptions)
longDescriptions - The new long descriptions.public String getLongDescriptions(int i)
i - The index.
public void setLongDescriptions(int i,
String longDescription)
i - The index.longDescription - The new long description.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||