1 /* 2 * @(#)Sample1.java 3 * 4 * Original author is Matt Albrecht 5 * groboclown@users.sourceforge.net 6 * http://groboutils.sourceforge.net 7 * 8 * This code sample has been submitted to the public domain, to show uses 9 * for the Interface testing framework. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 14 */ 15 16 package net.sourceforge.groboutils.junit.v1.iftc; 17 18 19 /** 20 * Sample interface. 21 * 22 * @author Matt Albrecht <a HREF="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a> 23 * @since July 21, 2002 24 * @version $Date: 2002/07/28 22:43:58 $ 25 */ 26 public interface Sample1 { 27 /** 28 * @exception IllegalArgumentException thrown if <tt>s</tt> is 29 * <tt>null</tt>. 30 */ 31 public void addString( String s ); 32 } 33 34