1 19 package org.netbeans.test.interfaces; 20 21 import org.netbeans.test.exceptions.Exception1; 22 import org.netbeans.test.exceptions.Exception2; 23 24 28 public interface Interface2 { 29 30 public static final int CONSTANT2_I1 = 1; 31 public static final String CONSTANT2_S2 = "2"; 32 public static final double CONSTANT2_F3 = 3.3; 33 34 public int method2_1(int arg1, String arg2) throws Exception1; 35 public int method2_2(int arg1, Interface2 arg2) throws Exception2; 36 } 37 | Popular Tags |