renamed all modules
This commit is contained in:
23
testdata/src/main/java/ctors/JR.java
vendored
Normal file
23
testdata/src/main/java/ctors/JR.java
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
package ctors;
|
||||
|
||||
public class JR {
|
||||
|
||||
public JR(int i) {
|
||||
|
||||
}
|
||||
|
||||
public static String printMessage() {
|
||||
return "hello";
|
||||
}
|
||||
|
||||
public static JR getInstance() {
|
||||
return new JR(42);
|
||||
}
|
||||
|
||||
public Object getFieldReflectively() throws Exception {
|
||||
return null;
|
||||
}
|
||||
|
||||
public void setFieldReflectively(int value) throws Exception {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user