renamed all modules
This commit is contained in:
23
testdata/src/main/java/iri/JLCGetDecAnnotations.java
vendored
Normal file
23
testdata/src/main/java/iri/JLCGetDecAnnotations.java
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
package iri;
|
||||
|
||||
import java.lang.annotation.Annotation;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
@Deprecated
|
||||
public class JLCGetDecAnnotations extends FormattingHelper {
|
||||
|
||||
public JLCGetDecAnnotations() {
|
||||
|
||||
}
|
||||
|
||||
public String run() throws Exception {
|
||||
Method m = Class.class.getMethod("getDeclaredAnnotations");
|
||||
Annotation[] o = (Annotation[]) m.invoke(JLCGetDecAnnotations.class);
|
||||
return format(o);
|
||||
}
|
||||
|
||||
public static void main(String[] argv) throws Exception {
|
||||
System.out.println(new JLCGetDecAnnotations().run());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user