1 6 7 package org.netbeans.test.java.testsources; 8 9 14 public abstract class Remover extends Object { 15 16 19 20 public static int a,b,c,d,e,f; 21 22 23 public Remover() { 24 } 25 26 29 30 31 public abstract int doNothing(); 32 33 34 public void doImportant(){ 35 int b=0; 36 for(int i=0; i<0; i++){ 37 b+=i; 38 } 39 } 40 41 42 44 public static int method1(int parameter1) throws java.io.IOException { 45 46 for (int i=0;i<100;i++){ 47 System.out.println(new Integer (i).toString()); 48 } 49 return 0; 50 } 51 52 54 55 public static int method1(int parameter1,int parameter2) throws java.io.IOException { 56 57 for (int i=0;i<100;i++){ 58 System.out.println(new Integer (i).toString()); 59 } 60 return 0; 61 } 62 63 65 66 public static int method1(float parameter1,float parameter2,final int parameter3) throws java.io.IOException { 67 68 for (int i=0;i<100;i++){ 69 System.out.println(new Integer (i).toString()); 70 } 71 return 0; 72 } 73 74 76 public static int method2(int parameter1) throws java.io.IOException { 77 78 for (int i=0;i<100;i++){ 79 System.out.println(new Integer (i).toString()); 80 } 81 return 0; 82 } 83 84 public double fa=3.1,fb=3.2,fc=3.3,fe=3.4,fd=3.5; 85 86 88 public static short method2(int parameter1,int parameter2) throws java.io.IOException { 89 90 for (int i=0;i<100;i++){ 91 System.out.println(new Integer (i).toString()); 92 } 93 return 0; 94 } 95 96 98 public static long method2(float parameter1,float parameter2,final int parameter3) throws java.io.IOException { 99 100 for (int i=0;i<100;i++){ 101 System.out.println(new Integer (i).toString()); 102 } 103 return 0; 104 } 105 106 108 public class InnerClass { 109 110 111 public void newMethod() { 112 } 113 } 114 115 117 public interface InnerInterface { 118 119 120 public static int newField=123; 121 122 123 public void newMethod(); 124 } 125 } | Popular Tags |