Package org.apache.batik.apps.svgbrowser
Interface NodePickerController
-
- All Known Implementing Classes:
DOMViewer.DOMViewerNodePickerController
public interface NodePickerControllerProvides the information to control the NodePickerPanel behaviour.- Version:
- $Id: NodePickerController.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanEdit(org.w3c.dom.Element el)Whether the given element can be edited with the NodePickerPanel.booleanisEditable()Whether NodePickerPanel is should be editable.
-
-
-
Method Detail
-
isEditable
boolean isEditable()
Whether NodePickerPanel is should be editable.
-
canEdit
boolean canEdit(org.w3c.dom.Element el)
Whether the given element can be edited with the NodePickerPanel.- Parameters:
el- The given element- Returns:
- True if the given element can be edited by a NodePickerPanel
-
-