blob: 1affcd6faa92f3b8435d5ed58629a393805de804 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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;
import java.util.Iterator;
import org.eclipse.jpt.utility.internal.model.Model;
/**
* Interface used to abstract tree accessing and
* change notification and make it more pluggable.
*/
public interface TreeValueModel<E>
extends Model
{
/**
* Return the tree's nodes.
*/
Iterator<E> nodes();
String NODES = "nodes";
}