rle.vm.editor
Class TranslatedTextEditor
java.lang.Object
rle.vm.Editor
rle.vm.editor.TranslatedTextEditor
- All Implemented Interfaces:
- Saveable
public class TranslatedTextEditor
- extends Editor
This control is intended to edit the values for a particular message in
every supported language. Basically, it lays out as a panel with a titled border
depicting the key of the message, and a column of label/text field pairs to
edit the value for each language. Each language other than the default also
gets a check box, allowing the user to "certify" that a given translation is
complete. This functionality is used by the Variant Manager to give feedback
as to how complete the translation is for a given language, and how to find
the nodes which require more work.
- Author:
- tss
Methods inherited from class rle.vm.Editor |
getAttribute, getOwner, getParameters, getTreeTool, paramMap, paramMap, setAttribute, setOwner, setParameters, setTreeTool, validate |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TranslatedTextEditor
public TranslatedTextEditor()
save
public void save()
- Specified by:
save
in interface Saveable
- Overrides:
save
in class Editor
getEditorComponent
public javax.swing.JComponent getEditorComponent()
- Returns the component that forms the UI for this Editor. initialize() must
be called before calling this method to create the component.
- Specified by:
getEditorComponent
in class Editor
initialize
public void initialize(AttributeBean attribute,
InfoNode owner,
TreeTool treeTool)
- Description copied from class:
Editor
- Method called to configure the editor. May be overridden in sub
classes to perform any needed layout. This method calls applyDefaults()
to allow subclasses to assume that a value exists (if a default is specified).
- Overrides:
initialize
in class Editor
applyDefaults
public void applyDefaults(AttributeBean attribute,
InfoNode owner,
TreeTool treeTool)
- Enforce any default value that might be appropriate. This method is used by the
VariantMgr.refresh() methods to ensure that nodes are given their default values
even if the node is never visited in the Variant Manager.
- Overrides:
applyDefaults
in class Editor
- Parameters:
attribute
- owner
- treeTool
-