Package nz.govt.natlib.meta.ui.tree

Examples of nz.govt.natlib.meta.ui.tree.PropertyEditorController


    if (selected instanceof ObjectFolderNode) {
      ObjectFolderNode node = (ObjectFolderNode) selected;

      // make a window for the property editor
      JDialog propFrame = new JDialog(this, "Properties", true);
      PropertyEditorController editor = new PropertyEditorController(node);
      propFrame.getContentPane().add(editor);
      propFrame.pack();

      // set the location.
      Point p1 = this.getLocation();
View Full Code Here

TOP

Related Classes of nz.govt.natlib.meta.ui.tree.PropertyEditorController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.