Class PropertyDescriptor
- java.lang.Object
-
- org.hippoecm.frontend.plugin.config.PropertyDescriptor
-
- All Implemented Interfaces:
Serializable
public class PropertyDescriptor extends Object implements Serializable
Describes property of a plugin. The class defines information on type of the property and its multiplicity.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyDescriptor(String name, int type, boolean multiple)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
The name of the property.int
getType()
The type of the property as defined inPropertyType
.boolean
isMultiple()
The flag indicating that property is multiple.
-
-
-
Constructor Detail
-
PropertyDescriptor
public PropertyDescriptor(String name, int type, boolean multiple)
-
-
Method Detail
-
getName
public String getName()
The name of the property.- Returns:
- name of the property
-
getType
public int getType()
The type of the property as defined inPropertyType
.- Returns:
- type of the property
- See Also:
PropertyType
-
isMultiple
public boolean isMultiple()
The flag indicating that property is multiple.- Returns:
- multiplicity flag
-
-