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

21
testdata/src/main/java/prot/One.java vendored Normal file
View File

@@ -0,0 +1,21 @@
package prot;
public class One {
public int publicField;
protected int protectedField;
public static int publicStaticField;
protected static int protectedStaticField;
protected int[] protectedArrayOfInts;
protected String[] protectedArrayOfStrings;
protected long[][] protectedArrayOfArrayOfLongs;
protected short protectedShortField;
protected long protectedLongField;
protected boolean protectedBooleanField;
protected byte protectedByteField;
protected char protectedCharField;
protected double protectedDoubleField;
protected float protectedFloatField;
}

View File

@@ -0,0 +1,7 @@
package prot;
public class PeerThree {
public int aField;
}

116
testdata/src/main/java/prot/SubOne.java vendored Normal file
View File

@@ -0,0 +1,116 @@
package prot;
public class SubOne extends One {
public int getPublicField() {
return publicField;
}
public void setPublicField(int publicField) {
this.publicField = publicField;
}
public int getProtectedField() {
return protectedField;
}
public void setProtectedField(int protectedField) {
this.protectedField = protectedField;
}
public static int getPublicStaticField() {
return publicStaticField;
}
public static void setPublicStaticField(int publicStaticField) {
One.publicStaticField = publicStaticField;
}
public static int getProtectedStaticField() {
return protectedStaticField;
}
public static void setProtectedStaticField(int protectedStaticField) {
One.protectedStaticField = protectedStaticField;
}
public int[] getProtectedArrayOfInts() {
return protectedArrayOfInts;
}
public void setProtectedArrayOfInts(int[] protectedArrayOfInts) {
this.protectedArrayOfInts = protectedArrayOfInts;
}
public String[] getProtectedArrayOfStrings() {
return protectedArrayOfStrings;
}
public void setProtectedArrayOfStrings(String[] protectedArrayOfStrings) {
this.protectedArrayOfStrings = protectedArrayOfStrings;
}
public long[][] getProtectedArrayOfArrayOfLongs() {
return protectedArrayOfArrayOfLongs;
}
public void setProtectedArrayOfArrayOfLongs(long[][] protectedArrayOfArrayOfLongs) {
this.protectedArrayOfArrayOfLongs = protectedArrayOfArrayOfLongs;
}
public short getProtectedShortField() {
return protectedShortField;
}
public void setProtectedShortField(short protectedShortField) {
this.protectedShortField = protectedShortField;
}
public long getProtectedLongField() {
return protectedLongField;
}
public void setProtectedLongField(long protectedLongField) {
this.protectedLongField = protectedLongField;
}
public boolean isProtectedBooleanField() {
return protectedBooleanField;
}
public void setProtectedBooleanField(boolean protectedBooleanField) {
this.protectedBooleanField = protectedBooleanField;
}
public byte getProtectedByteField() {
return protectedByteField;
}
public void setProtectedByteField(byte protectedByteField) {
this.protectedByteField = protectedByteField;
}
public char getProtectedCharField() {
return protectedCharField;
}
public void setProtectedCharField(char protectedCharField) {
this.protectedCharField = protectedCharField;
}
public double getProtectedDoubleField() {
return protectedDoubleField;
}
public void setProtectedDoubleField(double protectedDoubleField) {
this.protectedDoubleField = protectedDoubleField;
}
public float getProtectedFloatField() {
return protectedFloatField;
}
public void setProtectedFloatField(float protectedFloatField) {
this.protectedFloatField = protectedFloatField;
}
}

View File

@@ -0,0 +1,27 @@
package prot;
public class SubThree extends Three {
PeerThree peer = new PeerThree();
public int getField() {
return aField;
}
public void setField(int i) {
this.aField = i;
}
public void setPeerField(int i) {
peer.aField = i;
}
public int getPeerField() {
return peer.aField;
}
public PeerThree getPeer() {
return peer;
}
}

15
testdata/src/main/java/prot/SubTwo.java vendored Normal file
View File

@@ -0,0 +1,15 @@
package prot;
public class SubTwo extends Two {
public int someField;
public int getSomeField() {
return someField;
}
public void setSomeField(int i) {
this.someField = i;
}
}

View File

@@ -0,0 +1,7 @@
package prot;
public class Three {
protected int aField;
}

7
testdata/src/main/java/prot/Two.java vendored Normal file
View File

@@ -0,0 +1,7 @@
package prot;
public class Two {
protected int someField;
}