GWT AutoBean page说:
@Category注释可以指定多个类别类型。
以下语法在令牌“,”,/期望上提供语法错误:
@Category(FooCategory.class, BarCategory.class)
public interface FooBarFactory extends AutoBeanFactory {
...
}
指定多个类别类的语法是什么?
答案 0 :(得分:2)
使用{
和}
@Category({FooCategory.class, BarCategory.class})
public interface FooBarFactory extends AutoBeanFactory {
...
}