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 class ExampleConcreteClass extends ExampleAbstractClass {
11:
12: private java.sql.Statement[] statements;
13:
14: public ExampleConcreteClass() {
15: }
16:
17: public void a() {
18: try {
19: java.net.URL url = new java.net.URL(
20: "http://www.clarkware.com");
21: } catch (Exception e) {
22: }
23: }
24:
25: public java.util.Vector b(String[] s, java.text.NumberFormat nf) {
26: return null;
27: }
28:
29: public void c(BigDecimal bd, byte[] bytes)
30: throws java.rmi.RemoteException {
31: int[] a = { 1, 2, 3 };
32: int[][] b = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
33: }
34:
35: public java.io.File[] d() throws java.io.IOException {
36: java.util.jar.JarFile[] files = new java.util.jar.JarFile[1];
37: return new java.io.File[10];
38: }
39:
40: public java.lang.String[] e() {
41: java.lang.String[] strings = new java.lang.String[1];
42: return strings;
43: }
44:
45: public class ExampleInnerClass {
46: }
47: }
48:
49: class ExamplePackageClass {
50: }
|