Line | Hits | Source |
---|---|---|
1 | /* | |
2 | * Created on Apr 5, 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.decorators; | |
13 | ||
14 | import java.awt.Paint; | |
15 | ||
16 | import edu.uci.ics.jung.graph.Edge; | |
17 | ||
18 | /** | |
19 | * An implementation of <code>EdgePaintFunction</code> that is appropriate for | |
20 | * edge shapes that are not filled, such as lines or curves. | |
21 | * Provides an implementation of <code>getFillPaint()</code> | |
22 | * that returns null. | |
23 | * | |
24 | * @author Joshua O'Madadhain | |
25 | */ | |
26 | 0 | public abstract class AbstractEdgePaintFunction implements EdgePaintFunction |
27 | { | |
28 | /** | |
29 | * @see edu.uci.ics.jung.graph.decorators.EdgePaintFunction#getFillPaint(edu.uci.ics.jung.graph.Edge) | |
30 | */ | |
31 | public Paint getFillPaint(Edge e) | |
32 | { | |
33 | 0 | return null; |
34 | } | |
35 | ||
36 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |