| 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.ArchetypeEdge; | |
| 15 | ||
| 16 | /** | |
| 17 | * | |
| 18 | * @author Joshua O'Madadhain | |
| 19 | */ | |
| 20 | 814 | public abstract class EdgePredicate extends GPredicate |
| 21 | //implements Predicate | |
| 22 | { | |
| 23 | /** | |
| 24 | * @see org.apache.commons.collections.Predicate#evaluate(java.lang.Object) | |
| 25 | */ | |
| 26 | public final boolean evaluate(Object arg0) | |
| 27 | { | |
| 28 | 296421 | return evaluateEdge((ArchetypeEdge)arg0); |
| 29 | } | |
| 30 | ||
| 31 | public abstract boolean evaluateEdge(ArchetypeEdge e); | |
| 32 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |