jaxb-codemodel
jaxb-codemodel copied to clipboard
CodeModel is a Java library for code generators. This content is migrated into JAXB RI. This is for legacy viewing only
Please add the following overloads in JMethod: public JVar varParam(JMod mod, Class type, String name) public JVar varParam(JMod mod, JType type, String name) #### Affected Versions [2.6]
Please provide an getter for the arguments in JEnumConstant #### Affected Versions [2.6]
JCodeModel._class(String fullyQualifiedName) is not case sensitive with respect to the Class name.
JCodeModel._class(String fullyQualifiedName) is not case sensitive with respect to the class name. But JCodeModel._getClass(String fullyQualifiedName) is case sensitive. I have created a class called "AB_Cdef" in the model. When I...
Like the special support for @return and @deprecated having special support for @author and @since would be nice  #### Affected Versions [current]
Please make the following classes public: * JBreak * JContinue * JReturn * JThrow And please add getter (and eventually setter) methods for the following fields in these classes: *...
Please make JDocComment more flexible, so that the following use cases can be performed: * Remove an atParam * Remove an atXDoclit * Remove an atThrows Ideally it would also...
Please provide a way for all objects implementing JDocCommentable to create a new JavaDoc comment. Something like "JDocComment newJavadoc();". #### Affected Versions [current]
Please provide a possibility to remove content elements from a JBlock instance by the following ways: void remove(Object o) { content.remove (o); } void remove(int index) { content.remove (index); }...
There appears to be no way to model Foo
As of 2.5 there seems to be no API to generate ? super-style wildcards from a JClass. #### Affected Versions [2.5]