renamed all modules
This commit is contained in:
24
testdata/src/main/java/fields/TwoSlot.java
vendored
Normal file
24
testdata/src/main/java/fields/TwoSlot.java
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package fields;
|
||||
|
||||
public class TwoSlot {
|
||||
|
||||
double d = 34.5d;
|
||||
|
||||
long l = 123L;
|
||||
|
||||
public double getDouble() {
|
||||
return d;
|
||||
}
|
||||
|
||||
public void setDouble(double d) {
|
||||
this.d = d;
|
||||
}
|
||||
|
||||
public long getLong() {
|
||||
return l;
|
||||
}
|
||||
|
||||
public void setLong(long l) {
|
||||
this.l = l;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user