Uses of Interface
org.eclipse.emf.common.util.TreeIterator

Packages that use TreeIterator
org.eclipse.emf.common.util Provides basic utilities. 
org.eclipse.emf.ecore Provides an API for the Ecore dialect of UML. 
org.eclipse.emf.ecore.impl Provides an implementation of Ecore. 
org.eclipse.emf.ecore.resource Provides an API for modeling abstract persistent resources.  
org.eclipse.emf.ecore.resource.impl Provides an implementation of the resource API.  
org.eclipse.emf.ecore.util Provides utilities. 
org.eclipse.emf.edit.domain This provides support for an EditingDomain, which acts a centralized control mechanism for managing a set of interrelated models and the Commands which modify them.
org.eclipse.emf.edit.provider This provides reusable ItemProviderAdapter support to drive JFace StructuredViewers, Eclipse IPropertySources, and EditingDomain
org.eclipse.emf.exporter   
org.eclipse.emf.mapping   
org.eclipse.emf.mapping.impl   
 

Uses of TreeIterator in org.eclipse.emf.common.util
 

Classes in org.eclipse.emf.common.util that implement TreeIterator
 class AbstractTreeIterator
          An extensible tree iterator implementation that iterates over an object, it's children, their children, and so on.
 

Uses of TreeIterator in org.eclipse.emf.ecore
 

Methods in org.eclipse.emf.ecore that return TreeIterator
 TreeIterator EObject.eAllContents()
           Returns a tree iterator that iterates over all the direct contents and indirect contents of this object.
 

Uses of TreeIterator in org.eclipse.emf.ecore.impl
 

Methods in org.eclipse.emf.ecore.impl that return TreeIterator
 TreeIterator BasicEObjectImpl.eAllContents()
           
 

Uses of TreeIterator in org.eclipse.emf.ecore.resource
 

Methods in org.eclipse.emf.ecore.resource that return TreeIterator
 TreeIterator ResourceSet.getAllContents()
          Returns a tree iterator that iterates over all the direct resources and over the content tree of each.
 TreeIterator Resource.getAllContents()
          Returns a tree iterator that iterates over all the direct contents and indirect contents of this resource.
 

Uses of TreeIterator in org.eclipse.emf.ecore.resource.impl
 

Methods in org.eclipse.emf.ecore.resource.impl that return TreeIterator
 TreeIterator ResourceSetImpl.getAllContents()
           
 TreeIterator ResourceImpl.getAllContents()
           
protected  TreeIterator ResourceImpl.getAllProperContents(EObject eObject)
           
protected  TreeIterator ResourceImpl.getAllProperContents(List contents)
           
 

Uses of TreeIterator in org.eclipse.emf.ecore.util
 

Classes in org.eclipse.emf.ecore.util that implement TreeIterator
static class EcoreUtil.ContentTreeIterator
          An iterator over the tree contents of a collection of EObjects, Resources, and ResourceSets; use getAllContents to create a new instance.
 

Methods in org.eclipse.emf.ecore.util that return TreeIterator
static TreeIterator EcoreUtil.getAllContents(Collection emfObjects)
          Returns a tree iterator over the content trees recursively defined by ResourceSet.getResources(), Resource.getContents(), and EObject.eContents().
static TreeIterator EcoreUtil.getAllContents(Collection emfObjects, boolean resolve)
          Returns a tree iterator over the content trees recursively defined by ResourceSet.getResources(), Resource.getContents(), and EObject.eContents().
static TreeIterator EcoreUtil.getAllContents(EObject eObject, boolean resolve)
          Returns a tree iterator that iterates over all the direct contents and indirect contents of the object.
static TreeIterator EcoreUtil.getAllContents(Resource resource, boolean resolve)
          Returns a tree iterator that iterates over all the direct contents and indirect contents of the resource.
static TreeIterator EcoreUtil.getAllContents(ResourceSet resourceSet, boolean resolve)
          Returns a tree iterator that iterates over all the direct resources in the resource set and over the content tree of each.
static TreeIterator EcoreUtil.getAllProperContents(Collection emfObjects, boolean resolve)
          Returns a tree iterator over the content trees recursively defined by ResourceSet.getResources(), Resource.getContents(), and EObject.eContents(), skipping over any child object that's in a different resource from its parent.
static TreeIterator EcoreUtil.getAllProperContents(EObject eObject, boolean resolve)
          Returns a tree iterator that iterates over all the direct contents and indirect contents of the object, skipping over any child object that's in a different resource from its parent.
static TreeIterator EcoreUtil.getAllProperContents(Resource resource, boolean resolve)
          Returns a tree iterator that iterates over all the direct contents and indirect contents of the resource, skipping over any child object that's in a different resource from its parent.
static TreeIterator EcoreUtil.getAllProperContents(ResourceSet resourceSet, boolean resolve)
          Returns a tree iterator that iterates over all the direct resources in the resource set and over the content tree of each, skipping over any child object that's in a different resource from its parent.
protected  TreeIterator EcoreUtil.CrossReferencer.newContentsIterator()
          Return a tree iterator over the content trees of this cross referencer's objects.
 

Uses of TreeIterator in org.eclipse.emf.edit.domain
 

Classes in org.eclipse.emf.edit.domain that implement TreeIterator
static class AdapterFactoryEditingDomain.DomainTreeIterator
          This implements an tree iterator that iterates over an object, it's domain children, their domain children, and so on.
 

Methods in org.eclipse.emf.edit.domain that return TreeIterator
 TreeIterator EditingDomain.treeIterator(Object object)
          This returns a tree iterator that will yield the object, the children of the object, their children, and so on.
 TreeIterator AdapterFactoryEditingDomain.treeIterator(Object object)
          This returns a tree iterator that will yield the object, the children of the object, their children, and so on.
 

Uses of TreeIterator in org.eclipse.emf.edit.provider
 

Classes in org.eclipse.emf.edit.provider that implement TreeIterator
 class AdapterFactoryTreeIterator
          This implements a tree iterator that iterates over an object, it's children, their children, and so on, use the ITreeItemContentProviders produced by an adapter factory.
 

Uses of TreeIterator in org.eclipse.emf.exporter
 

Classes in org.eclipse.emf.exporter that implement TreeIterator
protected static class ModelExporter.GenPackagesTreeIterator
           
 

Uses of TreeIterator in org.eclipse.emf.mapping
 

Methods in org.eclipse.emf.mapping that return TreeIterator
 TreeIterator Mapping.treeIterator()
          This returns a tree iterator that iterates over this mapping, all it's nested mappings, and their nested mappings, and so on.
 TreeIterator Mapping.treeIterator(boolean includeRoot)
          This returns a tree iterator that iterates over this mapping (but only if includeRoot is true), all it's nested mappings, and their nested mappings, and so on.
 

Uses of TreeIterator in org.eclipse.emf.mapping.impl
 

Classes in org.eclipse.emf.mapping.impl that implement TreeIterator
static class MappingImpl.MappingTreeIterator
          This implements a tree iterator that will iterate over a mapping, all it's nested mappings, all their nested mappings, and so on.
 

Methods in org.eclipse.emf.mapping.impl that return TreeIterator
 TreeIterator MappingImpl.treeIterator()
           
 TreeIterator MappingImpl.treeIterator(boolean includeRoot)
           
 


Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.