| java.lang.Object org.eclipse.ui.examples.propertysheet.Name
Name | public class Name implements IPropertySource(Code) | | Example IPropertySource whose value as well as its children are editable.
|
Constructor Summary | |
public | Name(String name) Creates a new Name. |
Name | public Name(String name)(Code) | | Creates a new Name.
Parameters: name - String in the form "firstname initial lastname" |
getPropertyValue | public Object getPropertyValue(Object propKey)(Code) | | The Name implementation of this
IPropertySource method returns the following properties
1) P_FIRSTNAME returns String, firstname
2) P_LASTNAME returns String, lastname
3) P_MIDDLENAME returns String, middle
|
setPropertyValue | public void setPropertyValue(Object propName, Object val)(Code) | | The Name implementation of this
IPropertySource method
defines the following Setable properties
1) P_FIRST, expects String, sets the firstname of this OrganizationElement
2) P_MIDDLENAME, expects String, sets middlename of this OrganizationElement
3) P_LASTNAME, expects String, sets lastname of this OrganizationElement
|
toString | public String toString()(Code) | | The value as displayed in the Property Sheet. Will not print default values
java.lang.String |
|
|