@Category注释中有多个类型

时间:2012-05-23 15:42:49

标签: java gwt annotations autobean

GWT AutoBean page说:

  

@Category注释可以指定多个类别类型。

以下语法在令牌“,”,/期望上提供语法错误:

@Category(FooCategory.class, BarCategory.class)
public interface FooBarFactory extends AutoBeanFactory { 
    ...
}

指定多个类别类的语法是什么?

1 个答案:

答案 0 :(得分:2)

使用{}

包装参数
@Category({FooCategory.class, BarCategory.class})
public interface FooBarFactory extends AutoBeanFactory { 
    ...
}