Line | Hits | Source |
---|---|---|
1 | /* | |
2 | * Created on Jul 21, 2005 | |
3 | * | |
4 | * Copyright (c) 2005, the JUNG Project and the Regents of the University | |
5 | * of California | |
6 | * All rights reserved. | |
7 | * | |
8 | * This software is open-source under the BSD license; see either | |
9 | * "license.txt" or | |
10 | * http://jung.sourceforge.net/license.txt for a description. | |
11 | */ | |
12 | package edu.uci.ics.jung.visualization; | |
13 | ||
14 | import edu.uci.ics.jung.graph.Graph; | |
15 | import edu.uci.ics.jung.graph.Vertex; | |
16 | ||
17 | public class StaticLayout extends AbstractLayout | |
18 | { | |
19 | public StaticLayout(Graph g) | |
20 | { | |
21 | 0 | super(g); |
22 | 0 | } |
23 | ||
24 | 0 | protected void initialize_local() {} |
25 | ||
26 | 0 | protected void initialize_local_vertex(Vertex v) {} |
27 | ||
28 | 0 | public void advancePositions() {} |
29 | ||
30 | public boolean isIncremental() | |
31 | { | |
32 | 0 | return false; |
33 | } | |
34 | ||
35 | public boolean incrementsAreDone() | |
36 | { | |
37 | 0 | return true; |
38 | } | |
39 | ||
40 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |