1 /*2 * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of3 * the MIT License.4 */5 package org.easymock.samples;6 7 public interface Collaborator {8 void documentAdded(String title);9 10 void documentChanged(String title);11 12 void documentRemoved(String title);13 14 byte voteForRemoval(String title);15 16 byte voteForRemovals(String [] title);17 }18