blob: 418e73769df539a31e51696e1970248c61f17467 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.utility.internal.model.value;
/**
* Extend PropertyValueModel to better support the TreeModelAdapter class.
*
* Implementors of this interface should fire a "state change" event
* whenever the node's internal state changes in a way that the
* tree listeners should be notified.
*
* Implementors of this interface should also fire a "value property change"
* event whenever the node's value changes. Typically, only nodes that
* hold "primitive" data will fire this event.
*
* @see AbstractTreeNodeValueModel
*/
public interface TreeNodeValueModel
extends PropertyValueModel
{
/**
* Return the node's parent node; null if the node
* is the root.
*/
TreeNodeValueModel parent();
/**
* Return the path to the node.
*/
TreeNodeValueModel[] path();
/**
* Return a list value model of the node's child nodes.
*/
ListValueModel childrenModel();
/**
* Return the node's child at the specified index.
*/
TreeNodeValueModel child(int index);
/**
* Return the size of the node's list of children.
*/
int childrenSize();
/**
* Return the index in the node's list of children of the specified child.
*/
int indexOfChild(TreeNodeValueModel child);
/**
* Return whether the node is a leaf (i.e. it has no children)
*/
boolean isLeaf();
}