org.databene.commons.tree.DefaultTreeNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databene-commons Show documentation
Show all versions of databene-commons Show documentation
'databene commons' is an open source Java library by Volker Bergmann.
It provides extensions to the Java core library by utility classes, abstract concepts
and concrete implementations.
/*
* Copyright (C) 2004-2015 Volker Bergmann ([email protected]).
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.databene.commons.tree;
import java.util.List;
import java.util.ArrayList;
/**
* Default implementation of a tree node.
* Created: 08.05.2007 19:06:49
* @param the type of the wrapped object
* @author Volker Bergmann
*/
public class DefaultTreeNode {
private DefaultTreeNode parent;
private boolean leaf;
private List> children;
protected E object;
public static DefaultTreeNode createLeaf(DefaultTreeNode parent, T object) {
return new DefaultTreeNode(parent, object, true);
}
public static DefaultTreeNode createFolder(DefaultTreeNode parent, T object) {
return new DefaultTreeNode(parent, object, false);
}
public DefaultTreeNode(E object) {
this(null, object);
}
public DefaultTreeNode(DefaultTreeNode parent, E object) {
this(parent, object, false);
}
public DefaultTreeNode(DefaultTreeNode parent, E object, boolean leaf) {
this.parent = parent;
this.leaf = leaf;
this.children = new ArrayList>();
this.object = object;
}
public void addChild(DefaultTreeNode child) {
if (leaf)
throw new IllegalStateException("Can't add a child to a leaf");
children.add(child);
}
public DefaultTreeNode getParent() {
return parent;
}
public DefaultTreeNode getChild(int index) {
return children.get(index);
}
public int getChildCount() {
return children.size();
}
public boolean isLeaf() {
return leaf;
}
public int getIndexOfChild(DefaultTreeNode child) {
return children.indexOf(child);
}
public E getObject() {
return object;
}
@Override
public String toString() {
return String.valueOf(object);
}
}