01: package jdepend.framework;
02:
03: import java.math.BigDecimal;
04:
05: /**
06: * @author <b>Mike Clark</b>
07: * @author Clarkware Consulting, Inc.
08: */
09:
10: public abstract class ExampleAbstractClass implements ExampleInterface,
11: java.io.Serializable {
12:
13: private java.lang.reflect.Method method;
14:
15: public ExampleAbstractClass() {
16: }
17:
18: public void a() {
19: java.net.URL url;
20: }
21:
22: public java.util.Vector b(String[] s, java.text.NumberFormat nf) {
23: return null;
24: }
25:
26: public void c(BigDecimal bd, byte[] b)
27: throws java.rmi.RemoteException {
28:
29: }
30:
31: public abstract java.io.File[] d() throws java.io.IOException;
32: }
|