1 19 package org.netbeans.test.interfaces; 20 21 import java.io.IOException ; 22 23 27 public interface Interface1 { 28 29 public static final int CONSTANT1_I1 = 1; 30 public static final String CONSTANT1_S2 = "2"; 31 public static final double CONSTANT1_F3 = 3.3; 32 33 public int method1_1(int arg1, String arg2) throws IOException ; 34 public int method1_2(int arg1, Interface1 arg2) throws NullPointerException ; 35 } 36 | Popular Tags |