KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > java > testsources > ifaces > Interface1


1 /*
2  * Interface1.java
3  *
4  * Created on April 14, 2000, 9:34 AM
5  */

6  
7 package org.netbeans.test.java.testsources.ifaces;
8
9 /**
10  *
11  * @author jbecicka
12  * @version
13  */

14 public interface Interface1 extends RootInterface {
15     public void method1FromInterface1();
16 }
17
Popular Tags