| Package | Description |
|---|---|
| org.rhq.helpers.perftest.support.jpa | |
| org.rhq.helpers.perftest.support.jpa.mapping |
| Modifier and Type | Method and Description |
|---|---|
Node |
EntityDependencyGraph.addEntity(Class<?> entity)
Adds a single entity to the dependency graph and analyzes it.
|
Node |
Edge.getFrom() |
Node |
EntityDependencyGraph.getNode(Class<?> entityClass) |
Node |
Edge.getTo() |
| Modifier and Type | Method and Description |
|---|---|
Set<Node> |
EntityDependencyGraph.addEntities(Class<?>... entities)
A convenience method to add a number of entities to the graph at once.
|
Set<Node> |
EntityDependencyGraph.addEntities(Collection<Class<?>> entities)
A convenience method to add a number of entities to the graph at once.
|
Set<Node> |
EntityDependencyGraph.getAllNodes() |
SortedSet<Node> |
Node.getChildren(boolean onlyExplicitRelations)
Returns the children of this node.
|
Set<Node> |
EntityDependencyGraph.getLeafNodes() |
SortedSet<Node> |
Node.getParents(boolean onlyExplicitRelations)
Return the parents of this node.
|
Set<Node> |
EntityDependencyGraph.getRootNodes() |
SortedSet<Node> |
Node.getTransitiveChildren(boolean onlyExplicitRelations)
Returns this node, its children, their children, etc.
|
SortedSet<Node> |
Node.getTransitiveParents(boolean onlyExplicitRelations)
Returns this node, its parents, their parents, etc, recursively up the dependency graph.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Node.addChild(Node child,
Field childField,
Field thisField,
DependencyType dependencyType)
Similar to
addParent(Node, Field, Field, DependencyType) but creates an edge
with this node being the "from" and the child node being the "to" of the newly created edge. |
void |
Node.addParent(Node parent,
Field parentField,
Field thisField,
DependencyType dependencyType)
Add a parent node.
|
int |
Node.compareTo(Node o) |
| Constructor and Description |
|---|
Edge(Node from,
Node to,
Field fromField,
Field toField,
DependencyType dependencyType) |
| Modifier and Type | Method and Description |
|---|---|
EntityTranslation |
MappingTranslator.translate(Node node) |
Copyright © 2008-2014 Red Hat, Inc.. All Rights Reserved.