public class SfcFolderNode extends FolderNode
| Modifier and Type | Class and Description |
|---|---|
static class |
SfcFolderNode.NewChartAction |
FolderNode.NewFolderActionAbstractNavTreeNode.DeleteReason, AbstractNavTreeNode.PopupAction, AbstractNavTreeNode.ResourceChangeListenerProjectChangeListener.ResourceModification| Modifier and Type | Field and Description |
|---|---|
protected javax.swing.Action |
importChart |
allowRenameOnAdd, context, folderId, moduleId, newFolderAction, resourceId, resourceScopebold, children, childrenLoaded, copyAction, cutAction, deleteAction, depth, icon, italic, log, model, name, NAME_PATTERN, parent, pasteAction, protectedAction, protectedMenuItem, renameAction, selectionModel, text, thumbnail, tooltip| Constructor and Description |
|---|
SfcFolderNode(DesignerContext context,
SfcWorkspace workspace)
Create the root folder node
|
SfcFolderNode(DesignerContext context,
SfcWorkspace workspace,
ProjectResource folder)
Create a folder node for a sub-folder
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
canCopy(java.util.List<AbstractNavTreeNode> selectedChildren)
Can this edit action handler handle the copy action, given its current selection? Note that if this and
AbstractNavTreeNode.canDelete(java.util.List) both return true, the cut action will also be enabled. |
boolean |
canDelete(java.util.List<AbstractNavTreeNode> selectedChildren)
Can this edit action handler handle the delete action, given its current selection? Note that if this and
AbstractNavTreeNode.canCopy(java.util.List) both return true, the cut action will also be enabled. |
boolean |
canDrag(java.util.List<AbstractNavTreeNode> draggedChildren)
Can the nodes controlled by this action handling node be dragged?
|
boolean |
canDrop(AbstractNavTreeNode dropTarget,
java.util.List<java.awt.datatransfer.DataFlavor> flavors) |
boolean |
canPaste(java.util.List<AbstractNavTreeNode> selectedChildren,
java.awt.datatransfer.Transferable clipboard)
Can this action handler handle a paste given the data flavors currently available in the clipboard? data
may be null.
|
protected AbstractNavTreeNode |
createChildNode(ProjectResource r) |
java.awt.datatransfer.Transferable |
doCopy(java.util.List<? extends AbstractNavTreeNode> selectedChildren)
Called when the copy action is performed.
|
java.awt.datatransfer.Transferable |
doCut(java.util.List<? extends AbstractNavTreeNode> selectedChildren)
Called when the cut action is performed.
|
void |
doDelete(java.util.List<? extends AbstractNavTreeNode> children,
AbstractNavTreeNode.DeleteReason reason)
Called when the delete action is performed, if confirmDelete returned true
|
boolean |
doPaste(java.util.List<? extends AbstractNavTreeNode> selectedChildren,
java.awt.datatransfer.Transferable clipboardContents,
boolean isDrop)
Called when the paste action is performed
|
javax.swing.Icon |
getExpandedIcon()
Returns an alternate icon for when this node is expanded, if applicable.
|
int |
getSortOrder()
Returns the relative sort order for peers.
|
java.lang.String |
getWorkspaceName()
Returns the name of the desired workspace for this node.
|
protected void |
initPopupMenu(javax.swing.JPopupMenu menu,
javax.swing.tree.TreePath[] paths,
java.util.List<AbstractNavTreeNode> selection,
int modifiers)
Default implementation calls setupEditActions(), and then addEditActions()
|
boolean |
isEditActionHandler()
Override to return true if you want this node to be an edit action handler for its children.
|
void |
onSelected()
Called when this node is selected in the tree
|
protected DesignerProjectContext |
projectCtx()
Returns the project context to use.
|
canPaste, getFolderId, getProjectResource, isAllowRenameOnAdd, isEditable, isProtectedEnabled, loadChildren, onEdit, project, projectResourceModified, projectUpdated, setAllowRenameOnAdd, setName, setupEditActions, uninstallgatherChildrenIds, install, isProtected, selectChild, setProtectedaddBadges, addEditActions, checkChildren, children, confirmDelete, createProjectCopy, debug, debug, dispatchSelectionEvent, expand, findChild, findCommonEditActionHandler, findDropHandler, findEditActionHandler, forceChildrenReload, getAllowsChildren, getChildAt, getChildCount, getClipboard, getCommonEditActionHandler, getDepth, getIcon, getIndex, getModel, getName, getParent, getSelectionModel, getText, getThumbnail, getTooltip, isBold, isItalic, isLeaf, isSelected, isValidName, iterator, newLogger, notifyChildNameChanged, onChildrenSelected, onDoubleClick, pathToRoot, recreate, refresh, reload, select, select, setBold, setChildren, setIcon, setItalic, setText, setThumbnail, setTooltip, showPopup, showPopupMenu, toString, uninstallChildren, useThumbnailTooltippublic SfcFolderNode(DesignerContext context, SfcWorkspace workspace)
public SfcFolderNode(DesignerContext context, SfcWorkspace workspace, ProjectResource folder)
public javax.swing.Icon getExpandedIcon()
AbstractNavTreeNodegetExpandedIcon in class FolderNodepublic boolean isEditActionHandler()
AbstractNavTreeNodeisEditActionHandler in class AbstractNavTreeNodeprotected DesignerProjectContext projectCtx()
FolderNodeprojectCtx in class FolderNodepublic java.lang.String getWorkspaceName()
AbstractNavTreeNodegetWorkspaceName in class AbstractNavTreeNodepublic int getSortOrder()
AbstractNavTreeNodegetSortOrder in class AbstractNavTreeNodeprotected AbstractNavTreeNode createChildNode(ProjectResource r)
createChildNode in class FolderNodeprotected void initPopupMenu(javax.swing.JPopupMenu menu,
javax.swing.tree.TreePath[] paths,
java.util.List<AbstractNavTreeNode> selection,
int modifiers)
AbstractNavTreeNodeinitPopupMenu in class AbstractNavTreeNodepublic void doDelete(java.util.List<? extends AbstractNavTreeNode> children, AbstractNavTreeNode.DeleteReason reason)
AbstractNavTreeNodedoDelete in class AbstractNavTreeNodepublic java.awt.datatransfer.Transferable doCopy(java.util.List<? extends AbstractNavTreeNode> selectedChildren)
AbstractNavTreeNodedoCopy in class AbstractNavTreeNodeTransferable, or null if the copy failed. Will be added to
the system clipboard.public java.awt.datatransfer.Transferable doCut(java.util.List<? extends AbstractNavTreeNode> selectedChildren)
AbstractNavTreeNodedoCut in class AbstractNavTreeNodeTransferable, or null if the cut failed. Will be added to the
system clipboard.public boolean doPaste(java.util.List<? extends AbstractNavTreeNode> selectedChildren, java.awt.datatransfer.Transferable clipboardContents, boolean isDrop)
AbstractNavTreeNodedoPaste in class AbstractNavTreeNodeclipboardContents - The current contents of the clipboard to paste.isDrop - Indicates whether this paste originated from a drop action. If false, originated from a
keyboard or menu paste shortcut.public boolean canDelete(java.util.List<AbstractNavTreeNode> selectedChildren)
AbstractNavTreeNodeAbstractNavTreeNode.canCopy(java.util.List) both return true, the cut action will also be enabled.canDelete in class AbstractNavTreeNodepublic boolean canCopy(java.util.List<AbstractNavTreeNode> selectedChildren)
AbstractNavTreeNodeAbstractNavTreeNode.canDelete(java.util.List) both return true, the cut action will also be enabled.canCopy in class AbstractNavTreeNodepublic boolean canPaste(java.util.List<AbstractNavTreeNode> selectedChildren, java.awt.datatransfer.Transferable clipboard)
AbstractNavTreeNodecanPaste in class AbstractNavTreeNodepublic boolean canDrag(java.util.List<AbstractNavTreeNode> draggedChildren)
AbstractNavTreeNodecanDrag in class AbstractNavTreeNodepublic boolean canDrop(AbstractNavTreeNode dropTarget, java.util.List<java.awt.datatransfer.DataFlavor> flavors)
canDrop in class AbstractNavTreeNodepublic void onSelected()
AbstractNavTreeNodeonSelected in class AbstractNavTreeNode