KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > example > Swap


1 package example;
2
3 /**
4  * Interface to swap courses.
5  */

6 public interface Swap {
7   /**
8    * Swaps the instructors for the courses.
9    */

10   public void swap(Course a, Course b);
11 }
12
Popular Tags