T
- public interface IEditor<T>
Modifier and Type | Method and Description |
---|---|
boolean |
accepts(T t)
Does the editor accept the value.
|
void |
createControl(org.eclipse.swt.widgets.Composite parent)
Creates an according control.
|
java.lang.String |
getCategory()
Returns the category.
|
java.lang.String |
getLabel()
Returns the label.
|
T |
getValue()
Returns the current value.
|
boolean |
isDifferent(T value1,
T value2)
Checks whether the two values are different
|
void |
setValue(T t)
Sets the value.
|
boolean accepts(T t)
t
- void createControl(org.eclipse.swt.widgets.Composite parent)
parent
- java.lang.String getCategory()
java.lang.String getLabel()
T getValue()
void setValue(T t)
t
-