1 package net.sourceforge.wisk;
2
3 /***
4 * Dummy class.
5 *
6 * @author <a href="mailto:binkley@sourceforge.net">B. K. Oxley (binkley)</a>
7 * @version $Id: Dummy.java,v 1.1 2003/12/21 04:16:54 binkley Exp $
8 *
9 * @todo Get rid of this dummy class
10 */
11 public class Dummy {
12 /*** Our dummy */
13 private Object idiot;
14
15 /***
16 * Gets the idiot.
17 *
18 * @return the idiot
19 */
20 public Object getIdiot() {
21 return idiot;
22 }
23
24 /***
25 * Sets the idiot.
26 *
27 * @param idiot the idiot
28 */
29 public void setIdiot(Object idiot) {
30 this.idiot = idiot;
31 }
32 }
33
This page was automatically generated by Maven