Coverage details for edu.uci.ics.jung.visualization.StaticLayout

LineHitsSource
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     {
210        super(g);
220    }
23     
240    protected void initialize_local() {}
25  
260    protected void initialize_local_vertex(Vertex v) {}
27  
280    public void advancePositions() {}
29  
30     public boolean isIncremental()
31     {
320        return false;
33     }
34  
35     public boolean incrementsAreDone()
36     {
370        return true;
38     }
39  
40 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.