Uses of Class
de.xima.fc.common.graphdot.EdgeAttributeList
Packages that use EdgeAttributeList
Package
Description
Package with tools for working with the graph dot language.
See
GraphDotElementFactory for creating graph dot elements.-
Uses of EdgeAttributeList in de.xima.fc.common.graphdot
Subclasses with type arguments of type EdgeAttributeList in de.xima.fc.common.graphdotMethods in de.xima.fc.common.graphdot that return EdgeAttributeListMethods in de.xima.fc.common.graphdot with parameters of type EdgeAttributeListModifier and TypeMethodDescriptionstatic AttributeStatementGraphDotElementFactory.attributeStatementEdge(EdgeAttributeList attributeList) Creates a new assignment statement that assigns default properties to an edge.static DirectedEdgeStatementGraphDotElementFactory.directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, EdgeAttributeList attributes) Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static DirectedEdgeStatementGraphDotElementFactory.directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, Iterable<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes) Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static DirectedEdgeStatementGraphDotElementFactory.directedEdgeStatement(Iterable<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> nodes, EdgeAttributeList attributes) Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatementGraphDotElementFactory.undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, EdgeAttributeList attributes) Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatementGraphDotElementFactory.undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, Iterable<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes) Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatementGraphDotElementFactory.undirectedEdgeStatement(Iterable<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> nodes, EdgeAttributeList attributes) Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.Constructors in de.xima.fc.common.graphdot with parameters of type EdgeAttributeListModifierConstructorDescriptionDirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes) Creates a new directed edge statement/UndirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributeList) Creates a new undirected edge statement/