01 /*
02 * Created on Jul 15, 2004
03 *
04 * To change the template for this generated file go to
05 * Window - Preferences - Java - Code Generation - Code and Comments
06 */
07 package biz.xsoftware.examples.advanced;
08
09 /**
10 * An interface defining the more complex api we are mocking out.
11 *
12 * @author Dean Hiller
13 */
14 public interface User {
15
16 public String addTaskDone(String taskName);
17
18 }
|