Class PropertyImpl
- java.lang.Object
- 
- org.apache.myfaces.config.element.Property
- 
- org.apache.myfaces.config.impl.element.PropertyImpl
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class PropertyImpl extends Property implements Serializable - Version:
- $Revision$ $Date$ The "property" element represents a JavaBean property of the Java class represented by our parent element. Property names must be unique within the scope of the Java class that is represented by the parent element, and must correspond to property names that will be recognized when performing introspection against that class via java.beans.Introspector.
- Author:
- Martin Marinschek
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description PropertyImpl()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDescription(String value)voidaddDisplayName(String value)voidaddIcon(String value)voidaddPropertyExtension(String propertyExtension)StringgetDefaultValue()Collection<? extends String>getDescriptions()Collection<? extends String>getDisplayNames()Collection<? extends String>getIcons()StringgetPropertyClass()Collection<? extends String>getPropertyExtensions()StringgetPropertyName()StringgetSuggestedValue()voidsetDefaultValue(String defaultValue)voidsetPropertyClass(String propertyClass)voidsetPropertyName(String propertyName)voidsetSuggestedValue(String suggestedValue)
 
- 
- 
- 
Method Detail- 
addDescriptionpublic void addDescription(String value) 
 - 
getDescriptionspublic Collection<? extends String> getDescriptions() - Specified by:
- getDescriptionsin class- Property
 
 - 
addDisplayNamepublic void addDisplayName(String value) 
 - 
getDisplayNamespublic Collection<? extends String> getDisplayNames() - Specified by:
- getDisplayNamesin class- Property
 
 - 
addIconpublic void addIcon(String value) 
 - 
getIconspublic Collection<? extends String> getIcons() 
 - 
setPropertyNamepublic void setPropertyName(String propertyName) 
 - 
getPropertyNamepublic String getPropertyName() - Specified by:
- getPropertyNamein class- Property
 
 - 
setPropertyClasspublic void setPropertyClass(String propertyClass) 
 - 
getPropertyClasspublic String getPropertyClass() - Specified by:
- getPropertyClassin class- Property
 
 - 
setDefaultValuepublic void setDefaultValue(String defaultValue) 
 - 
getDefaultValuepublic String getDefaultValue() - Specified by:
- getDefaultValuein class- Property
 
 - 
setSuggestedValuepublic void setSuggestedValue(String suggestedValue) 
 - 
getSuggestedValuepublic String getSuggestedValue() - Specified by:
- getSuggestedValuein class- Property
 
 - 
addPropertyExtensionpublic void addPropertyExtension(String propertyExtension) 
 - 
getPropertyExtensionspublic Collection<? extends String> getPropertyExtensions() - Specified by:
- getPropertyExtensionsin class- Property
 
 
- 
 
-