-
Feature Request
-
Resolution: Done
-
Major
-
1.0.0.Alpha2
-
None
-
Low
The JavaClass API should add support for adding interfaces to the Java source being generated. Perhaps add these methods to Extendable.
void addInterface(String interface);
void addInterface(Class<?> type);
void hasInterface(String interface);
void hasInterface(Class<?> type);
List<String> getInterfaces();
...