01: package com.acme.sp;
02:
03: import java.lang.*;
04:
05: /**
06: * This class is the implementation of the interface SP.
07: */
08: public abstract interface SP {
09:
10: /**
11: * This method must be implemented by all classes which implement this
12: * interface.
13: */
14: public int saveName(String name, int value);
15: }
|