renamed all modules
This commit is contained in:
21
testdata/src/main/java/prot/One.java
vendored
Normal file
21
testdata/src/main/java/prot/One.java
vendored
Normal 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;
|
||||
|
||||
}
|
||||
7
testdata/src/main/java/prot/PeerThree.java
vendored
Normal file
7
testdata/src/main/java/prot/PeerThree.java
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
package prot;
|
||||
|
||||
public class PeerThree {
|
||||
|
||||
public int aField;
|
||||
|
||||
}
|
||||
116
testdata/src/main/java/prot/SubOne.java
vendored
Normal file
116
testdata/src/main/java/prot/SubOne.java
vendored
Normal 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;
|
||||
}
|
||||
}
|
||||
27
testdata/src/main/java/prot/SubThree.java
vendored
Normal file
27
testdata/src/main/java/prot/SubThree.java
vendored
Normal 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
15
testdata/src/main/java/prot/SubTwo.java
vendored
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
7
testdata/src/main/java/prot/Three.java
vendored
Normal file
7
testdata/src/main/java/prot/Three.java
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
package prot;
|
||||
|
||||
public class Three {
|
||||
|
||||
protected int aField;
|
||||
|
||||
}
|
||||
7
testdata/src/main/java/prot/Two.java
vendored
Normal file
7
testdata/src/main/java/prot/Two.java
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
package prot;
|
||||
|
||||
public class Two {
|
||||
|
||||
protected int someField;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user