| java.lang.Object org.eclipse.ui.examples.propertysheet.Birthday
Birthday | public class Birthday implements IPropertySource(Code) | | Example IPropertySource who itself is NOT editable, but whose children are.
The values of the children determine the value of the birthday.
|
Birthday | Birthday()(Code) | | Address Default Constructor
|
Birthday | public Birthday(int day, int month, int year)(Code) | | Convenience Address Constructor
|
getPropertyValue | public Object getPropertyValue(Object propKey)(Code) | | The Birthday implementation of this
IPropertySource method returns the following properties
1) P_DAY returns java.lang.Integer
2) P_MONTH returns java.lang.Integer
3) P_YEAR returns java.lang.Integer
4) P_STREET returns java.lang.String
|
isPropertySet | public boolean isPropertySet(Object property)(Code) | | |
resetPropertyValue | public void resetPropertyValue(Object property)(Code) | | |
setPropertyValue | public void setPropertyValue(Object name, Object value)(Code) | | The Birthday implementation of this
IPropertySource method
defines the following Setable properties
1) P_DAY expects java.lang.Integer
2) P_MONTH expects java.lang.Integer
3) P_YEAR expects java.lang.Integer
|
toString | public String toString()(Code) | | The value as displayed in the Property Sheet.
java.lang.String |
|
|