Line | Hits | Source |
---|---|---|
1 | /* | |
2 | * Created on Apr 28, 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.graph.impl; | |
13 | ||
14 | import java.util.Collection; | |
15 | ||
16 | /** | |
17 | * An implementation of <code>Hyperedge</code> that stores its | |
18 | * collection of incident vertices internally as a <code>Collection</code>. | |
19 | * | |
20 | * @author Joshua O'Madadhain | |
21 | */ | |
22 | 0 | public abstract class CollectionHyperedge extends AbstractHyperedge |
23 | { | |
24 | protected Collection vertices; | |
25 | ||
26 | /** | |
27 | * @see edu.uci.ics.jung.graph.impl.AbstractHyperedge#getVertices_internal() | |
28 | */ | |
29 | protected Collection getVertices_internal() | |
30 | { | |
31 | 0 | return vertices; |
32 | } | |
33 | ||
34 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |