public void doAction(Object action) {
if (action==null) return;
if (action.equals(NodeResourcesManager.resources.getString("Properties"))) {
PropertiesTransformDataUI dui = new PropertiesTransformDataUI(this, data, properties, true, colorMapperManager);
JDialog dialog = dui.createDialog(null, NodeResourcesManager.resources.getString("Properties"));
dialog.show();
}
}
/*