-
Notifications
You must be signed in to change notification settings - Fork 53
Closed
Description
I am using a fairly basic annotation structure
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
@Indexable
public static @interface BlockIdentity {
String blockName();
String desc() default "";
String[] inputNames();
String[] outputNames();
}
And the annotation creation fails when processing the array of strings with the error
[ERROR] error: java.io.IOException: Cannot handle object of type class com.sun.tools.javac.code.Attribute$Constant
when processing the inputNames array of this annotation
@BaseTIPLBlock.BlockIdentity(blockName = "GrowRegionsBlock",
inputNames= {"labeled image", "mask image"},
outputNames= {"filled labels", "filled neighborhood"})
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels