|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrle.vm.Editor
public abstract class Editor
A ui component that edits a particular attribute. These are mapped to attributes within an attribute set using the variant manager. NOTE: It is very important that subclasses not instantiate expensive UI classes (such as JTextField, etc) until initialize() is called; some VariantMgr operations instantiate the Editors simply for behavior oriented tasks, such as validating saved data, and instantiating such classes will have very visible performance implications.
Field Summary | |
---|---|
protected AttributeBean |
attribute
|
protected InfoNode |
owner
|
protected java.lang.String |
parameters
|
protected TreeTool |
treeTool
|
Constructor Summary | |
---|---|
Editor()
|
Method Summary | |
---|---|
void |
applyDefaults(AttributeBean attribute,
InfoNode owner,
TreeTool treeTool)
Enforce any default value that might be appropriate. |
AttributeBean |
getAttribute()
|
abstract javax.swing.JComponent |
getEditorComponent()
Returns the component that forms the UI for this Editor. |
InfoNode |
getOwner()
|
java.lang.String |
getParameters()
|
TreeTool |
getTreeTool()
|
void |
initialize(AttributeBean attribute,
InfoNode owner,
TreeTool treeTool)
Method called to configure the editor. |
protected java.util.Map<java.lang.String,java.lang.String> |
paramMap()
|
protected java.util.Map |
paramMap(AttributeBean a)
|
void |
save()
|
void |
setAttribute(AttributeBean attribute)
|
void |
setOwner(InfoNode owner)
|
void |
setParameters(java.lang.String parameters)
|
void |
setTreeTool(TreeTool treeTool)
|
java.util.List<java.lang.String> |
validate(AttributeBean attribute,
InfoNode owner,
TreeTool treeTool)
Analyze the data saved for this attribute and return any validation errors that the user needs to be notified of, or an empty List if there are no such errors. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected TreeTool treeTool
protected AttributeBean attribute
protected InfoNode owner
protected java.lang.String parameters
Constructor Detail |
---|
public Editor()
Method Detail |
---|
public void save()
save
in interface Saveable
public void setTreeTool(TreeTool treeTool)
public TreeTool getTreeTool()
public void setAttribute(AttributeBean attribute)
public AttributeBean getAttribute()
public void setOwner(InfoNode owner)
public InfoNode getOwner()
public void initialize(AttributeBean attribute, InfoNode owner, TreeTool treeTool)
attribute
- owner
- treeTool
- public abstract javax.swing.JComponent getEditorComponent()
public void applyDefaults(AttributeBean attribute, InfoNode owner, TreeTool treeTool)
attribute
- owner
- treeTool
- public java.util.List<java.lang.String> validate(AttributeBean attribute, InfoNode owner, TreeTool treeTool)
attribute
- owner
- treeTool
- public void setParameters(java.lang.String parameters)
public java.lang.String getParameters()
protected java.util.Map<java.lang.String,java.lang.String> paramMap()
protected java.util.Map paramMap(AttributeBean a)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |