renamed all modules
This commit is contained in:
78
testdata/src/main/java/fields/E.java
vendored
Normal file
78
testdata/src/main/java/fields/E.java
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
package fields;
|
||||
|
||||
public class E {
|
||||
|
||||
int i = 100;
|
||||
short s = 200;
|
||||
boolean z = true;
|
||||
long j = 324L;
|
||||
float f = 32f;
|
||||
double d = 2.5d;
|
||||
char c = 'a';
|
||||
byte b = (byte) 255;
|
||||
|
||||
public int getInt() {
|
||||
return i;
|
||||
}
|
||||
|
||||
public void setInt(int newvalue) {
|
||||
i = newvalue;
|
||||
}
|
||||
|
||||
public short getShort() {
|
||||
return s;
|
||||
}
|
||||
|
||||
public void setShort(short newvalue) {
|
||||
s = newvalue;
|
||||
}
|
||||
|
||||
public boolean getBoolean() {
|
||||
return z;
|
||||
}
|
||||
|
||||
public void setBoolean(boolean newvalue) {
|
||||
z = newvalue;
|
||||
}
|
||||
|
||||
public long getLong() {
|
||||
return j;
|
||||
}
|
||||
|
||||
public void setLong(long newvalue) {
|
||||
j = newvalue;
|
||||
}
|
||||
|
||||
public float getFloat() {
|
||||
return f;
|
||||
}
|
||||
|
||||
public void setFloat(float newvalue) {
|
||||
f = newvalue;
|
||||
}
|
||||
|
||||
public char getChar() {
|
||||
return c;
|
||||
}
|
||||
|
||||
public void setChar(char newvalue) {
|
||||
c = newvalue;
|
||||
}
|
||||
|
||||
public byte getByte() {
|
||||
return b;
|
||||
}
|
||||
|
||||
public void setByte(byte newvalue) {
|
||||
b = newvalue;
|
||||
}
|
||||
|
||||
public double getDouble() {
|
||||
return d;
|
||||
}
|
||||
|
||||
public void setDouble(double newvalue) {
|
||||
d = newvalue;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user