本文整理汇总了Java中com.sun.hotspot.igv.hierarchicallayout.HierarchicalLayoutManager.doLayout方法的典型用法代码示例。如果您正苦于以下问题:Java HierarchicalLayoutManager.doLayout方法的具体用法?Java HierarchicalLayoutManager.doLayout怎么用?Java HierarchicalLayoutManager.doLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.hotspot.igv.hierarchicallayout.HierarchicalLayoutManager
的用法示例。
在下文中一共展示了HierarchicalLayoutManager.doLayout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: performGraphLayout
import com.sun.hotspot.igv.hierarchicallayout.HierarchicalLayoutManager; //导入方法依赖的package包/类
protected void performGraphLayout(UniversalGraph<N, E> graph) {
Set<LinkWrapper> links = new LinkedHashSet<LinkWrapper>();
Set<VertexWrapper> vertices = new LinkedHashSet<VertexWrapper>();
Map<N, VertexWrapper> vertexMap = new HashMap<N, VertexWrapper>();
for (N node : graph.getNodes()) {
VertexWrapper v = new VertexWrapper(node, graph);
vertexMap.put(node, v);
vertices.add(v);
}
for (E edge : graph.getEdges()) {
N source = graph.getEdgeSource(edge);
N target = graph.getEdgeTarget(edge);
LinkWrapper l = new LinkWrapper(vertexMap.get(source), vertexMap.get(target));
links.add(l);
}
HierarchicalLayoutManager m = new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.NONE);
LayoutGraph layoutGraph = new LayoutGraph(links, vertices);
m.doLayout(layoutGraph);
}
示例2: performGraphLayout
import com.sun.hotspot.igv.hierarchicallayout.HierarchicalLayoutManager; //导入方法依赖的package包/类
protected void performGraphLayout(UniversalGraph<N, E> graph) {
Set<LinkWrapper> links = new HashSet<LinkWrapper>();
Set<VertexWrapper> vertices = new HashSet<VertexWrapper>();
Map<N, VertexWrapper> vertexMap = new HashMap<N, VertexWrapper>();
for (N node : graph.getNodes()) {
VertexWrapper v = new VertexWrapper(node, graph);
vertexMap.put(node, v);
vertices.add(v);
}
for (E edge : graph.getEdges()) {
N source = graph.getEdgeSource(edge);
N target = graph.getEdgeTarget(edge);
LinkWrapper l = new LinkWrapper(vertexMap.get(source), vertexMap.get(target));
links.add(l);
}
HierarchicalLayoutManager m = new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.NONE);
LayoutGraph layoutGraph = new LayoutGraph(links, vertices);
m.doLayout(layoutGraph);
}
示例3: relayout
import com.sun.hotspot.igv.hierarchicallayout.HierarchicalLayoutManager; //导入方法依赖的package包/类
private void relayout(Set<Widget> oldVisibleWidgets) {
System.out.println("relayout called with old visible widgets: " + oldVisibleWidgets);
Diagram diagram = getModel().getDiagramToView();
HashSet<Figure> figures = new HashSet<>();
for (Figure f : diagram.getFigures()) {
FigureWidget w = getWidget(f);
if (w.isVisible()) {
figures.add(f);
}
}
HashSet<Connection> edges = new HashSet<>();
for (Connection c : diagram.getConnections()) {
if (isVisible(c)) {
edges.add(c);
}
}
HierarchicalLayoutManager manager = new HierarchicalLayoutManager(HierarchicalLayoutManager.Combine.SAME_OUTPUTS);
manager.setMaxLayerLength(10);
manager.doLayout(new LayoutGraph(edges, figures));
relayoutWithoutLayout(oldVisibleWidgets);
}