KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > acme > sp > SP


1 package com.acme.sp;
2
3 import java.lang.*;
4
5 /**
6  * This class is the implementation of the interface SP.
7  */

8 public abstract interface SP {
9
10     /**
11      * This method must be implemented by all classes which implement this
12      * interface.
13      */

14     public int saveName(String JavaDoc name, int value);
15 }
16
Popular Tags