Coverage details for edu.uci.ics.jung.graph.impl.UndirectedSparseEdge

LineHitsSource
1 /*
2 * Copyright (c) 2003, the JUNG Project and the Regents of the University
3 * of California
4 * All rights reserved.
5 *
6 * This software is open-source under the BSD license; see either
7 * "license.txt" or
8 * http://jung.sourceforge.net/license.txt for a description.
9 */
10 package edu.uci.ics.jung.graph.impl;
11  
12 import edu.uci.ics.jung.graph.UndirectedEdge;
13 import edu.uci.ics.jung.graph.Vertex;
14  
15 /**
16  * An implementation of <code>UndirectedEdge</code> that resides
17  * in an undirected graph.
18  *
19  * @author Joshua O'Madadhain
20  * @author Danyel Fisher
21  * @author Scott White
22  *
23  * @see UndirectedSparseVertex
24  * @see UndirectedSparseGraph
25  */
26 public class UndirectedSparseEdge extends AbstractSparseEdge
27     implements UndirectedEdge
28 {
29     /**
30      * Creates an undirected edge that connects vertex <code>from</code>
31      * to vertex <code>to</code> (and vice versa).
32      */
33     public UndirectedSparseEdge(Vertex from, Vertex to)
34     {
35144057        super( from, to );
36144057    }
37 }

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.