KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > easymock > samples > Collaborator


1 /*
2  * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of
3  * the MIT License.
4  */

5 package org.easymock.samples;
6
7 public interface Collaborator {
8     void documentAdded(String JavaDoc title);
9
10     void documentChanged(String JavaDoc title);
11
12     void documentRemoved(String JavaDoc title);
13
14     byte voteForRemoval(String JavaDoc title);
15
16     byte voteForRemovals(String JavaDoc[] title);
17 }
18
Popular Tags