Uses of Interface
uk.ed.inf.graph.compound.ISubCompoundGraph

Packages that use ISubCompoundGraph
uk.ed.inf.graph.compound   
uk.ed.inf.graph.compound.base   
uk.ed.inf.graph.compound.impl   
 

Uses of ISubCompoundGraph in uk.ed.inf.graph.compound
 

Methods in uk.ed.inf.graph.compound that return ISubCompoundGraph
 ISubCompoundGraph<N,E> ISubCompoundGraphFactory.createInducedSubgraph()
           
 ISubCompoundGraph<N,E> ISubCompoundGraphFactory.createPermissiveInducedSubgraph()
           
 ISubCompoundGraph<N,E> ISubCompoundGraphFactory.createSubgraph()
           
 ISubCompoundGraph<N,E> IModifiableCompoundGraph.getCopiedComponents()
          Retrieves the nodes and edges created in this graph by the last copy operation.
 ISubCompoundGraph<N,E> IModifiableChildCompoundGraph.getCopiedComponents()
          Retrieves the nodes and edges created in this graph by the last copy operation.
 ISubCompoundGraph<N,E> ICompoundGraphCopyBuilder.getCopiedComponents()
          Gets the copied nodes and edges that were created in the destination graph as a subgraph of the destination graph.
 ISubCompoundGraph<N,E> IModifiableChildCompoundGraph.getMovedComponents()
          Retrieves the nodes and edges created in this graph by the last copy operation.
 ISubCompoundGraph<N,E> ICompoundGraphMoveBuilder.getMovedComponents()
          Gets the moved nodes and edges that were created in the destination graph as a subgraph of the destination graph.
 ISubCompoundGraph<N,E> ICompoundGraphMoveBuilder.getSourceSubgraph()
           
 ISubCompoundGraph<N,E> ICompoundGraphCopyBuilder.getSourceSubgraph()
           
 ISubCompoundGraph<N,E> ISubCompoundGraphBuilder.getSubgraph()
          Retrieve the created subgraph.
 

Methods in uk.ed.inf.graph.compound with parameters of type ISubCompoundGraph
 boolean IModifiableCompoundGraph.canCopyHere(ISubCompoundGraph<? extends N,? extends E> subgraph)
          Removes the nodes and edges defined in the subgraph from this graph.
 boolean IModifiableChildCompoundGraph.canCopyHere(ISubCompoundGraph<? extends N,? extends E> subgraph)
          Tests whether the subGraph can be copied to this graph.
 boolean IModifiableChildCompoundGraph.canMoveHere(ISubCompoundGraph<? extends N,? extends E> subGraph)
          Tests whether the subGraph can be moved to this graph.
 boolean IModifiableCompoundGraph.canRemoveSubgraph(ISubCompoundGraph<? extends N,? extends E> subgraph)
          Tests if subgraph removal will succeed.
 void IModifiableCompoundGraph.copyHere(ISubCompoundGraph<? extends N,? extends E> subgraph)
          Copies a subgraph into this graph.
 void IModifiableChildCompoundGraph.copyHere(ISubCompoundGraph<? extends N,? extends E> subgraph)
          Copies a subgraph into this graph.
 void IModifiableChildCompoundGraph.moveHere(ISubCompoundGraph<? extends N,? extends E> subGraph)
          Moves a subgraph into this graph.
 void ICompoundGraphMoveBuilder.setSourceSubgraph(ISubCompoundGraph<? extends N,? extends E> sourceSubCompoundGraph)
          Sets the subgraph which is to be moved.
 void ICompoundGraphCopyBuilder.setSourceSubgraph(ISubCompoundGraph<? extends N,? extends E> sourceSubCompoundGraph)
          Sets the subgraph which is to be copied.
 

Uses of ISubCompoundGraph in uk.ed.inf.graph.compound.base
 

Classes in uk.ed.inf.graph.compound.base that implement ISubCompoundGraph
 class BaseSubCompoundGraph
           
 

Methods in uk.ed.inf.graph.compound.base that return ISubCompoundGraph
 ISubCompoundGraph<BaseCompoundNode,BaseCompoundEdge> BaseCompoundGraph.getCopiedComponents()
           
 

Methods in uk.ed.inf.graph.compound.base with parameters of type ISubCompoundGraph
 boolean BaseCompoundGraph.canCopyHere(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subGraph)
           
 boolean BaseChildCompoundGraph.canCopyHere(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subGraph)
           
 boolean BaseChildCompoundGraph.canMoveHere(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> iSubGraph)
          Tests whether the subGraph can be moved to this graph.
 boolean BaseCompoundGraph.canRemoveSubgraph(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subgraph)
           
 void BaseCompoundGraph.copyHere(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subGraph)
           
 void BaseChildCompoundGraph.copyHere(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subGraph)
           
 void BaseChildCompoundGraph.moveHere(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subGraph)
          Moves a subgraph into this graph.
 void BaseCompoundGraph.removeSubgraph(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> subgraph)
           
 void BaseGraphMoveBuilder.setSourceSubgraph(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> sourceSubCompoundGraph)
           
 void BaseGraphCopyBuilder.setSourceSubgraph(ISubCompoundGraph<? extends BaseCompoundNode,? extends BaseCompoundEdge> sourceSubCompoundGraph)
           
 

Uses of ISubCompoundGraph in uk.ed.inf.graph.compound.impl
 

Classes in uk.ed.inf.graph.compound.impl that implement ISubCompoundGraph
 class SubCompoundGraph