| org.apache.jetspeed.om.common.preference.PreferenceComposite
All known Subclasses: org.apache.jetspeed.om.preference.impl.PrefsPreference,
PreferenceComposite | public interface PreferenceComposite extends PreferenceCtrl,Preference,Serializable(Code) | | PreferenceComposite
author: Scott T. Weaver version: $Id: PreferenceComposite.java,v 1.2 2004/06/18 20:46:21 weaver Exp $ |
addValue | void addValue(String value)(Code) | |
addValue
Adds a new value to this Preference.
Parameters: value - Vale to add to the preference |
getDescription | Description getDescription(Locale locale)(Code) | | |
getValueAt | String getValueAt(int index)(Code) | | throws: java.lang.ArrayIndexOutofBounds - if index is outside the constraints Parameters: index - The String value at the specified index or null if no values are present. |
removeValueAt | void removeValueAt(int index)(Code) | | Parameters: index - |
setType | void setType(String string)(Code) | | Parameters: string - |
setValueAt | void setValueAt(int index, String value)(Code) | |
setValueAt
Sets the current Preference's value at index
to the specified value
Parameters: index - Index hows value will be set. Parameters: value - Value to set |
setValues | void setValues(String[] stringValues)(Code) | |
setValues
Replaces the current set of values of this preference
with this one.
Parameters: stringValues - |
|
|