summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/ListTreeNode.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-10-20 11:40:05 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-10-20 11:40:05 -0230
commitb51469b41167fb86ae2059a15cf0475c53fdda7b (patch)
treefc85d6ca2efd89c67e1e4e7438f437c3e08313f4 /java/src/IceGridGUI/Application/ListTreeNode.java
parentFixed (ICE-5695) - IceSSL: misleading exception (diff)
downloadice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.bz2
ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.xz
ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.zip
Down with ant. From the gradle to the grave.
Diffstat (limited to 'java/src/IceGridGUI/Application/ListTreeNode.java')
-rw-r--r--java/src/IceGridGUI/Application/ListTreeNode.java249
1 files changed, 0 insertions, 249 deletions
diff --git a/java/src/IceGridGUI/Application/ListTreeNode.java b/java/src/IceGridGUI/Application/ListTreeNode.java
deleted file mode 100644
index 3f0ca2b498b..00000000000
--- a/java/src/IceGridGUI/Application/ListTreeNode.java
+++ /dev/null
@@ -1,249 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-package IceGridGUI.Application;
-
-import javax.swing.tree.DefaultTreeModel;
-
-import java.util.Enumeration;
-
-import IceGridGUI.*;
-
-//
-// An editable TreeNode that holds a list of children
-//
-abstract class ListTreeNode extends TreeNode
-{
- @Override
- public Enumeration<Object> children()
- {
- return new Enumeration<Object>()
- {
- @Override
- public boolean hasMoreElements()
- {
- return _p.hasNext();
- }
-
- @Override
- public Object nextElement()
- {
- return _p.next();
- }
-
- private java.util.Iterator<TreeNodeBase> _p = _children.iterator();
- };
- }
-
- @Override
- public boolean getAllowsChildren()
- {
- return true;
- }
-
- @Override
- public javax.swing.tree.TreeNode getChildAt(int childIndex)
- {
- if(childIndex < 0)
- {
- throw new ArrayIndexOutOfBoundsException(childIndex);
- }
- else if(childIndex < _children.size())
- {
- return _children.get(childIndex);
- }
- else
- {
- throw new ArrayIndexOutOfBoundsException(childIndex);
- }
- }
-
- @Override
- public int getChildCount()
- {
- return _children.size();
- }
-
- @Override
- public int getIndex(javax.swing.tree.TreeNode node)
- {
- return _children.indexOf(node);
- }
-
- @Override
- public boolean isLeaf()
- {
- return _children.isEmpty();
- }
-
- @Override
- public Editor getEditor()
- {
- if(_editor == null)
- {
- _editor = new Editor();
- }
- return _editor;
- }
-
- @Override
- protected Editor createEditor()
- {
- assert false;
- return null;
- }
-
- protected ListTreeNode(boolean brandNew, TreeNode parent, String id)
- {
- super(parent, id);
- _editable = new Editable(brandNew);
- }
-
- @Override
- void write(XMLWriter writer)
- throws java.io.IOException
- {
- for(TreeNodeBase p : _children)
- {
- TreeNode node = (TreeNode)p;
- node.write(writer);
- }
- }
-
- void insertChild(TreeNode child, boolean fireEvent)
- throws UpdateFailedException
- {
- DefaultTreeModel treeModel = fireEvent ? getRoot().getTreeModel() : null;
-
- if(!insertSortedChild(child, _children, treeModel))
- {
- throw new UpdateFailedException(this, child.getId());
- }
- }
-
- void insertChildren(java.util.List newChildren, boolean fireEvent)
- throws UpdateFailedException
- {
- DefaultTreeModel treeModel = fireEvent ? getRoot().getTreeModel() : null;
-
- String badChildId = insertSortedChildren(newChildren, _children, treeModel);
-
- if(badChildId != null)
- {
- throw new UpdateFailedException(this, badChildId);
- }
- }
-
- int removeChild(TreeNode child)
- {
- int index = getIndex(child);
- _children.remove(child);
-
- getRoot().getTreeModel().nodesWereRemoved(this, new int[]{index}, new Object[]{child});
- return index;
- }
-
- void removeChildren(String[] childIds)
- {
- removeSortedChildren(childIds, _children, getRoot().getTreeModel());
- }
-
- void childrenChanged(java.util.List children)
- {
- childrenChanged(children, getRoot().getTreeModel());
- }
-
- Editable getEditable()
- {
- return _editable;
- }
-
- javax.swing.ComboBoxModel createComboBoxModel()
- {
- return new ComboBoxModel();
- }
-
- javax.swing.ComboBoxModel createComboBoxModel(Object item)
- {
- return new ComboBoxModel(item);
- }
-
- //
- // Adapts ListTreeNode to a ComboBoxModel
- //
- class ComboBoxModel extends javax.swing.AbstractListModel implements javax.swing.ComboBoxModel
- {
- @Override
- public Object getElementAt(int index)
- {
- if(_firstItem != null)
- {
- if(index == 0)
- {
- return _firstItem;
- }
- else
- {
- return getChildAt(index - 1);
- }
- }
- else
- {
- return getChildAt(index);
- }
- }
-
- @Override
- public int getSize()
- {
- if(_firstItem != null)
- {
- return getChildCount() + 1;
- }
- else
- {
- return getChildCount();
- }
- }
-
- @Override
- public Object getSelectedItem()
- {
- return _selectedItem;
- }
-
- @Override
- public void setSelectedItem(Object obj)
- {
- if(obj != _selectedItem)
- {
- _selectedItem = obj;
- fireContentsChanged(this, -1, -1);
- }
- }
-
- ComboBoxModel(Object firstItem)
- {
- _firstItem = firstItem;
- }
-
- ComboBoxModel()
- {
- _firstItem = null;
- }
-
- private final Object _firstItem;
- private Object _selectedItem;
- }
-
- protected final java.util.LinkedList<TreeNodeBase> _children = new java.util.LinkedList<TreeNodeBase>();
- protected Editable _editable;
-
- static private Editor _editor;
-}