| org.apache.pluto.internal.InternalPortletPreference
All known Subclasses: org.apache.pluto.internal.impl.PortletPreferenceImpl,
InternalPortletPreference | public interface InternalPortletPreference (Code) | | This class represents a portlet preference, which is a name-value pair.
|
Method Summary | |
Object | clone() Clone a copy of itself. | String | getName() Returns the name of this portlet preference. | String[] | getValues() Returns the values of this portlet preference, which is a string array. | boolean | isReadOnly() Returns true if this portlet preference is marked as read-only. | void | setValues(String[] values) Sets values of this portlet preference. |
clone | Object clone()(Code) | | Clone a copy of itself.
a copy of itself. |
getName | String getName()(Code) | | Returns the name of this portlet preference.
the name of this portlet preference. |
getValues | String[] getValues()(Code) | | Returns the values of this portlet preference, which is a string array.
the values of this portlet preference as a string array. |
isReadOnly | boolean isReadOnly()(Code) | | Returns true if this portlet preference is marked as read-only.
true if this portlet preference is marked as read-only. |
setValues | void setValues(String[] values)(Code) | | Sets values of this portlet preference.
Parameters: values - values of this portlet preference to set. |
|
|