KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > examples > distcalc > src > Services


1 package spoon.examples.distcalc.src;
2
3 import spoon.examples.distcalc.annotation.Service;
4
5 public interface Services {
6
7     @Service
8     long fac(long n);
9
10     @Service
11     boolean primary(long n);
12
13 }
14
Popular Tags