本文整理汇总了Java中javax.swing.tree.DefaultMutableTreeNode.insert方法的典型用法代码示例。如果您正苦于以下问题:Java DefaultMutableTreeNode.insert方法的具体用法?Java DefaultMutableTreeNode.insert怎么用?Java DefaultMutableTreeNode.insert使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.tree.DefaultMutableTreeNode
的用法示例。
在下文中一共展示了DefaultMutableTreeNode.insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sort
import javax.swing.tree.DefaultMutableTreeNode; //导入方法依赖的package包/类
public static void sort(DefaultMutableTreeNode parent) {
int n = parent.getChildCount();
for (int i = 0; i < n - 1; i++) {
int min = i;
for (int j = i + 1; j < n; j++) {
if (tnc.compare((DefaultMutableTreeNode) parent.getChildAt(min), (DefaultMutableTreeNode) parent.getChildAt(j)) > 0) {
min = j;
}
}
if (i != min) {
MutableTreeNode a = (MutableTreeNode) parent.getChildAt(i);
MutableTreeNode b = (MutableTreeNode) parent.getChildAt(min);
parent.insert(b, i);
parent.insert(a, min);
updateTree = true;
}
}
}
示例2: addProjectTabInternal
import javax.swing.tree.DefaultMutableTreeNode; //导入方法依赖的package包/类
/**
* Adds a Project-Tab and a new node (child of a specified parent) to the ProjectWindow.
*
* @param projectWindowTab the project window tab
* @return the default mutable tree node
*/
private DefaultMutableTreeNode addProjectTabInternal(ProjectWindowTab projectWindowTab) {
// --- create Node ----------------------
DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(projectWindowTab);
DefaultMutableTreeNode pareNode = null;
JTabbedPane tabbedPaneParent = null;
String parentName = projectWindowTab.getParentName();
// --- add to the TreeModel -------------
if (parentName != null) {
pareNode = getTreeNode(parentName);
ProjectWindowTab pareNodePWT = (ProjectWindowTab) pareNode.getUserObject();
tabbedPaneParent = pareNodePWT.getCompForChildComp();
// --- add ChangeListener -----------
this.addChangeListener(tabbedPaneParent);
} else {
pareNode = this.getRootNode();
tabbedPaneParent = projectViewRightTabs;
}
if (projectWindowTab.getIndexPosition() != -1 && projectWindowTab.getIndexPosition() < pareNode.getChildCount()) {
// --- Add to parent node/tab at index position ----
pareNode.insert(newNode, projectWindowTab.getIndexPosition());
tabbedPaneParent.insertTab(projectWindowTab.getTitle(), projectWindowTab.getIcon(), projectWindowTab.getJComponentForVisualization(), projectWindowTab.getTipText(), projectWindowTab.getIndexPosition());
} else {
// --- Just add to parent node/tab -----------------
pareNode.add(newNode);
tabbedPaneParent.addTab(projectWindowTab.getTitle(), projectWindowTab.getIcon(), projectWindowTab.getJComponentForVisualization(), projectWindowTab.getTipText());
}
// --- refresh view ---------------------
this.getTreeModel().reload();
this.projectTreeExpand2Level(3, true);
return newNode;
}
示例3: refreshStates
import javax.swing.tree.DefaultMutableTreeNode; //导入方法依赖的package包/类
/**
* Refreshes the rendering of the states in a given set.
*/
private void refreshStates(Set<GraphState> refreshables) {
for (GraphState state : refreshables) {
StateTreeNode node = getStateNode(state);
DefaultMutableTreeNode parent = (DefaultMutableTreeNode) node.getParent();
int index = parent.getIndex(node);
node.removeFromParent();
StateTreeNode newNode = createStateNode(state);
parent.insert(newNode, index);
getModel().reload(parent);
setStateExpanded(newNode);
}
}