Java by API/java.lang/SuppressWarnings — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 14:40, 31 мая 2010
java.lang.SuppressWarnings (named compiler warnings should be suppressed)
import java.io.File;
import java.io.Serializable;
import java.util.ArrayList;
@SuppressWarnings (value={"unchecked", "serial"})
public class Main implements Serializable {
public void openFile () {
ArrayList a = new ArrayList ();
File file = new File ("X:/java/doc.txt");
}
}