| Line | Hits | Source |
|---|---|---|
| 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 | * Created on Mar 5, 2004 | |
| 11 | */ | |
| 12 | package edu.uci.ics.jung.graph.predicates; | |
| 13 | ||
| 14 | import edu.uci.ics.jung.graph.ArchetypeVertex; | |
| 15 | ||
| 16 | /** | |
| 17 | * | |
| 18 | * @author Joshua O'Madadhain | |
| 19 | */ | |
| 20 | 680 | public abstract class VertexPredicate extends GPredicate |
| 21 | // implements Predicate | |
| 22 | { | |
| 23 | ||
| 24 | /** | |
| 25 | * @see org.apache.commons.collections.Predicate#evaluate(java.lang.Object) | |
| 26 | */ | |
| 27 | public final boolean evaluate(Object arg0) | |
| 28 | { | |
| 29 | 33040 | return evaluateVertex((ArchetypeVertex)arg0); |
| 30 | } | |
| 31 | ||
| 32 | public abstract boolean evaluateVertex(ArchetypeVertex v); | |
| 33 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |