1 package ChangedPackage; 2 3 import java.io.*; 4 5 9 public abstract class ChangedClassModifiers { 10 11 12 public ChangedClassModifiers() { 13 } 14 15 18 public ChangedClassModifiers(int removed) { 19 } 20 21 26 public ChangedClassModifiers(int a, int b) { 27 } 28 29 33 public ChangedClassModifiers(int a, String b) { 34 } 35 36 39 public ChangedClassModifiers(long a) { 40 } 41 42 public ChangedClassModifiers(long a, long b) throws Exception , IOException, FileNotFoundException { 43 } 44 45 public ChangedClassModifiers(long a, long b, long c) throws Exception , IOException { 46 } 47 48 49 public void UnchangedMethod() { 50 } 51 52 53 public void MethodBecomesNonStatic() { 54 } 55 56 public static void MethodBecomesStatic() { 57 } 58 59 60 public void MethodBecomesNonAbstract() { 61 } 62 63 public abstract void MethodBecomesAbstract(); 64 65 66 public void MethodRemovesExceptions() { 67 } 68 69 70 public void MethodAddsExceptions() throws Exception , IOException, FileNotFoundException { 71 } 72 73 77 public void MethodChangesExceptions() throws IOException, Exception { 78 } 79 80 81 public void MethodChangesExceptions2() throws Exception , IOException { 82 } 83 84 85 public void MethodChangesNativeToNonNative() { 86 } 87 88 public native void MethodChangesNonNativeToNative(); 89 90 91 public void MethodChangesSynchronizedToNonSynchronized() { 92 } 93 94 public synchronized void MethodChangesNonSynchronizedToSynchronized() { 95 } 96 97 98 public boolean unchanged; 99 100 101 public boolean changedFinalToNonFinal = false; 102 103 public final boolean changedNonFinalToFinal = false; 104 105 106 protected String fromPublicToProtected; 107 108 public String fromProtectedToPublic; 109 110 111 String fromStaticToNonStatic; 112 113 static String fromNonStaticToStatic; 114 115 116 String fromTransientToNonTransient; 117 118 transient String fromNonTransientToTransient; 119 120 121 String fromVolatileToNonVolatile; 122 123 volatile String fromNonVolatileToVolatile; 124 125 } 126 | Popular Tags |