1   /***
2    * JFoxSOAF, Service-Oriented Application Framework
3    * 
4    * Copyright (C) www.huihoo.org
5    * 
6    * Distributable under GNU LGPL For more information, please visit:
7    * http://www.huihoo.org/jfox/jfoxsoaf
8    */
9   
10  package org.huihoo.jfox.soaf.container;
11  
12  /***
13   * Test Model Boy
14   * 
15   * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
16   * @version $Revision: 1.1 $ $Date: 2004/10/18 11:50:57 $
17   * @version Revision: 1.0
18   */
19  
20  public class Boy implements Kissable {
21  
22      public void kiss(Object kisser) {
23          System.out.println("I was kissed by " + kisser);
24      }
25  
26  }