Examples of VirtualFolderDropHandler


Examples of org.freeplane.plugin.workspace.mindmapmode.VirtualFolderDropHandler

 
    getTransferHandler().registerNodeDropHandler(FolderFileNode.class, new FileFolderDropHandler());
    getTransferHandler().registerNodeDropHandler(FolderLinkNode.class, new FileFolderDropHandler());
    getTransferHandler().registerNodeDropHandler(FolderTypeMyFilesNode.class, new FileFolderDropHandler());
   
    getTransferHandler().registerNodeDropHandler(FolderVirtualNode.class, new VirtualFolderDropHandler());
    getTransferHandler().registerNodeDropHandler(ProjectRootNode.class, new VirtualFolderDropHandler());
   
    //default fallback for folder
    getTransferHandler().registerNodeDropHandler(AFolderNode.class, new VirtualFolderDropHandler());
   
    DnDController.excludeFromDND(WorkspaceRootNode.class);
    DnDController.excludeFromDND(LinkTypeFileNode.class);
    DnDController.excludeFromDND(DefaultFileNode.class);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.