Coverage details for edu.uci.ics.jung.utils.AbstractVertexMapper

LineHitsSource
1 /*
2  * Copyright (c) 2004, the JUNG Project and the Regents of the University of
3  * California All rights reserved.
4  *
5  * This software is open-source under the BSD license; see either "license.txt"
6  * or http://jung.sourceforge.net/license.txt for a description.
7  *
8  * Created on Jul 6, 2004
9  */
10 package edu.uci.ics.jung.utils;
11  
12 import edu.uci.ics.jung.graph.ArchetypeGraph;
13  
14 /**
15  * An abstract class based on <code>VertexMapper</code> that specifies
16  * a destination graph.
17  *
18  * @author Joshua O'Madadhain
19  */
20 public abstract class AbstractVertexMapper implements VertexMapper
21 {
22     protected ArchetypeGraph dest;
23     /**
24      *
25      */
26     public AbstractVertexMapper(ArchetypeGraph dest)
270    {
280        this.dest = dest;
290    }
30 }

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.