I want to get something like this:
public @interface Unfinished {
String value();
String value() default "someVal";
}
The problem is I cannot use JFieldVar because it looks like this:
String value; //no parentheses
String value = "someVal"; //no parentheses, no "default", "=" sign