Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.6
-
Fix Version/s: 1.8
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
For instance a method like this annotated with the @Editor annotation
@Editor(FileEditor.class)
public void setFile(File file) {
this.file = file;
}
does not work but produces a stack trace.
Here's the annotaiton.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Editor {
Class<? extends PropertyEditor> value();
}
doens't seem to be a problem anymore. Test added like mentioned in the issue. Runs without failing