Line | Hits | Source |
---|---|---|
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) | |
27 | 0 | { |
28 | 0 | this.dest = dest; |
29 | 0 | } |
30 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |