renamed all modules

This commit is contained in:
Andy Clement
2014-01-15 11:36:24 -08:00
parent 342420b2ed
commit ceef61cf98
1055 changed files with 301 additions and 259 deletions

View File

@@ -0,0 +1,7 @@
package executor;
import common.Marker;
@Marker
public class A {
}

View File

@@ -0,0 +1,6 @@
package executor;
@common.Marker
@common.Anno(id = "abc")
public class A2 {
}

13
testdata/src/main/java/executor/B.java vendored Normal file
View File

@@ -0,0 +1,13 @@
package executor;
import common.*;
public class B {
@Marker
public void m() {}
//@common.Marker
//@common.Anno(id = "abc")
public void m2() {}
}

16
testdata/src/main/java/executor/B2.java vendored Normal file
View File

@@ -0,0 +1,16 @@
package executor;
@SuppressWarnings("unused")
public class B2 {
// annotation removed
public void m() {
}
// two annotations added
@common.Marker
@common.Anno(id = "abc")
public void m2() {
}
}

View File

@@ -0,0 +1,8 @@
package executor;
public class C {
public void foo(String s) {}
public static void foo(C c, String s) {}
}

12
testdata/src/main/java/executor/I.java vendored Normal file
View File

@@ -0,0 +1,12 @@
package executor;
import common.Marker;
public interface I {
@Marker
public void m();
//@common.Marker
//@common.Anno(id = "abc")
public void m2();
}

13
testdata/src/main/java/executor/I2.java vendored Normal file
View File

@@ -0,0 +1,13 @@
package executor;
@SuppressWarnings("unused")
public interface I2 {
// annotation removed
public void m();
// two annotations added
@common.Marker
@common.Anno(id = "abc")
public void m2();
}

View File

@@ -0,0 +1,16 @@
package executor;
public class TestOne {
public int i = 101;
// Regular method
public long foo(String s) {
return Long.parseLong(s);
}
// Overriding an inherited method
public int hashCode() {
return 37;
}
}

View File

@@ -0,0 +1,16 @@
package executor;
public class TestOne2 {
public int i;
// Regular method
public long foo(String s) {
return Long.parseLong(s);
}
// Overriding an inherited method
public int hashCode() {
return i * 2;
}
}