1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
package jdepend.framework;
import java.math.BigDecimal;
import jdepend.framework.p1.ExampleInnerAnnotation;
import jdepend.framework.p2.ExampleEnum;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runners.Suite.SuiteClasses;
/**
* @author <b>Mike Clark</b>
* @author Clarkware Consulting, Inc.
*/
@org.junit.runners.Suite.SuiteClasses(java.applet.AppletStub.class)
public class ExampleConcreteClass extends ExampleAbstractClass {
private java.sql.Statement[] statements;
public ExampleConcreteClass() {
}
public void a() {
try {
java.net.URL url = new java.net.URL("http://www.clarkware.com");
} catch (Exception e) {
}
}
public java.util.Vector b(String[] s, java.text.NumberFormat nf) {
return null;
}
public void c(BigDecimal bd, byte[] bytes) throws java.rmi.RemoteException {
int[] a = { 1, 2, 3};
int[][] b = { { 1, 2}, { 3, 4}, { 5, 6}};
}
public java.io.File[] d() throws java.io.IOException {
java.util.jar.JarFile[] files = new java.util.jar.JarFile[1];
return new java.io.File[10];
}
public java.lang.String[] e() {
java.lang.String[] strings = new java.lang.String[1];
return strings;
}
@org.junit.Test(expected = javax.crypto.BadPaddingException.class)
@ExampleAnnotation(
c1 = java.awt.geom.AffineTransform.class,
c2 = java.awt.image.renderable.ContextualRenderedImageFactory.class,
c3 = @ExampleInnerAnnotation({
java.awt.im.InputContext.class,
java.awt.dnd.peer.DragSourceContextPeer.class}),
c4 = ExampleEnum.E1)
@org.junit.Ignore
public void f() {
}
public class ExampleInnerClass {
}
}
class ExamplePackageClass {
}
|