Hello, small suggestion to IntrospectorModeller.java.
Let's assume I have a resource
@Path("somepath")
public class MyResource {
@GET
public String myMethod(@MyAnnotation String parameter) { ... } }
}
Here, @MyAnnotation messes up the Parameter generated by IntrospectorModeller, so that the resulting WADL is "broken", or rather, less usable. Maybe there should be a way to have IntrospectorModeller to ignore this annotation?
Cheers,
/Isak