Package org.jvnet.hk2.config.types
Interface Property
-
- All Superinterfaces:
ConfigBeanProxy
public interface Property extends ConfigBeanProxy
Property type definition.- Author:
- Jerome Dochez
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
ConfigBeanProxy.Duck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Gets the value of the description property.StringgetName()Gets the value of the name property.StringgetValue()Gets the value of the value property.voidsetDescription(String value)Sets the value of the description property.voidsetName(String value)Sets the value of the name property.voidsetValue(String value)Sets the value of the value property.-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
-
-
-
Method Detail
-
setName
void setName(String value) throws PropertyVetoException
Sets the value of the name property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException- if a listener vetoes the change
-
setValue
void setValue(String value) throws PropertyVetoException
Sets the value of the value property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException- if a listener vetoes the change
-
getDescription
String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
void setDescription(String value) throws PropertyVetoException
Sets the value of the description property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException- if a listener vetoes the change
-
-