StructureEditor to do the actual work. Which StructureEditor to use is determined by looking at the type of structure being edited. A TransformationEditor is not created directly by client code. The editor to use is linked to the page displaying the transformation through the TransformationEditorCache class. The following code snippet shows how to retrieve the editor to use for a given page:
TransformationPage page = ... TransformationEditorCache editors = TransformationEditorCache.getInstance(); TransformationEditor editor = editors.getEditor(page);@see TransformationEditorCache @see StructureEditor @author Torgil Zethson @since 1.3.0
| |