所以,问题是能够multple警告镇压,使每个项目并不需要它自己的结合@SuppressWarnings
注释。
因此,例如:
public class Example
public Example() {
GO go = new GO(); // unused
....
List<String> list = ( List<String> ) go.getList(); // unchecked
}
...
// getters/setters/other methods
}
现在不是有两个@SuppressWarnings
我想有一个在类级别为这两个警告,所以这样的:
@SuppressWarnings( "unused", "unchecked" )
public class Example
public Example() {
GO go = new GO(); // unused - suppressed
....
List<String> list = ( List<String> ) go.getList(); // unchecked - suppressed
}
...
// getters/setters/other methods
}
但是,这并不是一个有效的语法,是有办法做到这一点?