| com.jgraph.l2fplugin.JGraphpadL2FPropertySheet
JGraphpadL2FPropertySheet | public class JGraphpadL2FPropertySheet extends PropertySheetPanel (Code) | | Property sheet to display cell and user object properties.
|
Method Summary | |
public Object | convertValue(Object value) Converts the value to a string representation if it is not supported as
an editable value by the property sheet. | protected Property[] | createProperties(String category, Map map, PropertyChangeListener listener) Creates an array of properties out of the key, value pairs in the
specified map using the specified category.
Parameters: map - The map that contains the key, value pairs to be added. Parameters: category - The category of the new properties. | protected Property | createProperty(String category, String name, Object value, PropertyChangeListener listener) Creates a new property using the specified name, value and category.
Parameters: name - The name of the property to be created. Parameters: value - The value of the property to be created. Parameters: category - The category of the new property. | protected PropertyChangeListener | createPropertyChangeListener(JGraph graph, Object keyCell) Creates a property change listener that uses the specified keyCell to add
an entry to the nested map for the changed attributes. | public void | update(JGraph graph) Updates the display properties to show the properties of the selection
cell in the specified graph. |
JGraphpadL2FPropertySheet | public JGraphpadL2FPropertySheet()(Code) | | Constructs a new property sheet.
|
convertValue | public Object convertValue(Object value)(Code) | | Converts the value to a string representation if it is not supported as
an editable value by the property sheet.
|
createProperties | protected Property[] createProperties(String category, Map map, PropertyChangeListener listener)(Code) | | Creates an array of properties out of the key, value pairs in the
specified map using the specified category.
Parameters: map - The map that contains the key, value pairs to be added. Parameters: category - The category of the new properties. Returns an array of properties for map . |
createProperty | protected Property createProperty(String category, String name, Object value, PropertyChangeListener listener)(Code) | | Creates a new property using the specified name, value and category.
Parameters: name - The name of the property to be created. Parameters: value - The value of the property to be created. Parameters: category - The category of the new property. Returns a new property. |
createPropertyChangeListener | protected PropertyChangeListener createPropertyChangeListener(JGraph graph, Object keyCell)(Code) | | Creates a property change listener that uses the specified keyCell to add
an entry to the nested map for the changed attributes.
Parameters: graph - The graph to be used for changing the key cell. Parameters: keyCell - The object to be used as a key in the nested map. |
update | public void update(JGraph graph)(Code) | | Updates the display properties to show the properties of the selection
cell in the specified graph.
Parameters: graph - The graph to display the selection cell properties for. |
|
|