Coverage details for edu.uci.ics.jung.graph.predicates.VertexPredicate

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 * 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  */
20680public 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     {
2933040        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.
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.