public class mxAnalysisGraph
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected mxGraphGenerator |
generator |
protected mxGraph |
graph |
protected java.util.Map<java.lang.String,java.lang.Object> |
properties |
Constructor and Description |
---|
mxAnalysisGraph() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object[] |
getChildCells(java.lang.Object parent,
boolean vertices,
boolean edges) |
java.lang.Object[] |
getChildEdges(java.lang.Object parent) |
java.lang.Object[] |
getChildVertices(java.lang.Object parent) |
java.lang.Object[] |
getEdges(java.lang.Object cell,
java.lang.Object parent,
boolean includeLoops,
boolean recurse)
Returns the incoming and/or outgoing edges for the given cell.
|
java.lang.Object[] |
getEdges(java.lang.Object cell,
java.lang.Object parent,
boolean incoming,
boolean outgoing,
boolean includeLoops,
boolean recurse)
Returns the incoming and/or outgoing edges for the given cell.
|
mxGraphGenerator |
getGenerator() |
mxGraph |
getGraph() |
java.lang.Object[] |
getOpposites(java.lang.Object[] edges,
java.lang.Object terminal)
Returns all distinct opposite cells for the specified terminal
on the given edges.
|
java.lang.Object[] |
getOpposites(java.lang.Object[] edges,
java.lang.Object terminal,
boolean sources,
boolean targets)
Returns all distinct opposite cells for the specified terminal
on the given edges.
|
java.util.Map<java.lang.String,java.lang.Object> |
getProperties() |
java.lang.Object |
getTerminal(java.lang.Object edge,
boolean isSource) |
void |
setGenerator(mxGraphGenerator generator) |
void |
setGraph(mxGraph graph) |
void |
setProperties(java.util.Map<java.lang.String,java.lang.Object> properties) |
protected java.util.Map<java.lang.String,java.lang.Object> properties
protected mxGraphGenerator generator
protected mxGraph graph
public java.lang.Object[] getEdges(java.lang.Object cell, java.lang.Object parent, boolean incoming, boolean outgoing, boolean includeLoops, boolean recurse)
cell
- Cell whose edges should be returned.parent
- Optional parent. If specified the opposite end of any edge
must be a child of that parent in order for the edge to be returned. The
recurse parameter specifies whether or not it must be the direct child
or the parent just be an ancestral parent.incoming
- Specifies if incoming edges should be included in the
result.outgoing
- Specifies if outgoing edges should be included in the
result.includeLoops
- Specifies if loops should be included in the result.recurse
- Specifies if the parent specified only need be an ancestral
parent, true
, or the direct parent, false
public java.lang.Object[] getEdges(java.lang.Object cell, java.lang.Object parent, boolean includeLoops, boolean recurse)
cell
- Cell whose edges should be returned.parent
- Optional parent. If specified the opposite end of any edge
must be a child of that parent in order for the edge to be returned. The
recurse parameter specifies whether or not it must be the direct child
or the parent just be an ancestral parent.includeLoops
- Specifies if loops should be included in the result.recurse
- Specifies if the parent specified only need be an ancestral
parent, true
, or the direct parent, false
public java.lang.Object[] getChildVertices(java.lang.Object parent)
parent
- the cell whose children will be returnpublic java.lang.Object[] getChildEdges(java.lang.Object parent)
parent
- the cell whose child edges will be returnpublic java.lang.Object getTerminal(java.lang.Object edge, boolean isSource)
edge
- the whose terminal is being soughtisSource
- whether the source terminal is being soughtpublic java.lang.Object[] getChildCells(java.lang.Object parent, boolean vertices, boolean edges)
parent
- vertices
- edges
- public java.lang.Object[] getOpposites(java.lang.Object[] edges, java.lang.Object terminal, boolean sources, boolean targets)
edges
- Edges whose opposite terminals should be returned.terminal
- Terminal that specifies the end whose opposite should be
returned.sources
- Specifies if source terminals should be included in the
result.targets
- Specifies if target terminals should be included in the
result.public java.lang.Object[] getOpposites(java.lang.Object[] edges, java.lang.Object terminal)
edges
- Edges whose opposite terminals should be returned.terminal
- Terminal that specifies the end whose opposite should be
returned.public java.util.Map<java.lang.String,java.lang.Object> getProperties()
public void setProperties(java.util.Map<java.lang.String,java.lang.Object> properties)
public mxGraph getGraph()
public void setGraph(mxGraph graph)
public mxGraphGenerator getGenerator()
public void setGenerator(mxGraphGenerator generator)
Copyright (c) 2010-2017 Gaudenz Alder, JGraph Ltd. All rights reserved.