Package com.intellij.openapi.fileChooser

Examples of com.intellij.openapi.fileChooser.FileElement


          if (nodeContainsRenamedFile) {
            final DefaultMutableTreeNode finalNode = node;
            SwingUtilities.invokeLater(new Runnable() {
              @Override public void run() {
                FileNodeDescriptor nodeDescriptor = (FileNodeDescriptor) userObject;
                FileElement fileElement = new FileElement(file, newFileName);
                fileElement.setParent(nodeDescriptor.getElement().getParent());
                finalNode.setUserObject(new FileNodeDescriptor(
                    nodeDescriptor.getProject(),
                    fileElement,
                    nodeDescriptor.getParentDescriptor(),
                    nodeDescriptor.getIcon(),
View Full Code Here

TOP

Related Classes of com.intellij.openapi.fileChooser.FileElement

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.