renamed all modules
This commit is contained in:
18
testdata/src/main/java/iri/JLCGetFields2.java
vendored
Normal file
18
testdata/src/main/java/iri/JLCGetFields2.java
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
package iri;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class JLCGetFields2 extends FormattingHelper {
|
||||
|
||||
public String run() throws Exception {
|
||||
Method m = Class.class.getMethod("getFields");
|
||||
Field[] fs = (Field[]) m.invoke(JLCGetFields2.class);
|
||||
return format(fs);
|
||||
}
|
||||
|
||||
String aString;
|
||||
|
||||
public int anInt;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user