org.apache.pluto.internal
Interface InternalPortletPreference

All Known Implementing Classes:
PortletPreferenceImpl

public interface InternalPortletPreference

This class represents a portlet preference, which is a name-value pair.


Method Summary
 java.lang.Object clone()
          Clone a copy of itself.
 java.lang.String getName()
          Returns the name of this portlet preference.
 java.lang.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(java.lang.String[] values)
          Sets values of this portlet preference.
 

Method Detail

getName

java.lang.String getName()
Returns the name of this portlet preference.

Returns:
the name of this portlet preference.

getValues

java.lang.String[] getValues()
Returns the values of this portlet preference, which is a string array.

Returns:
the values of this portlet preference as a string array.

setValues

void setValues(java.lang.String[] values)
Sets values of this portlet preference.

Parameters:
values - values of this portlet preference to set.

isReadOnly

boolean isReadOnly()
Returns true if this portlet preference is marked as read-only.

Returns:
true if this portlet preference is marked as read-only.

clone

java.lang.Object clone()
Clone a copy of itself.

Returns:
a copy of itself.


Copyright © 2003-2010 Apache Software Foundation. All Rights Reserved.