1 /*2 * JBoss, Home of Professional Open Source3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 package org.jboss.ejb3.test.stateful.nested;9 10 /**11 * Comment12 *13 * @author Ben Wang14 * @version $Revision: 45372 $15 */16 public interface NestedStateful17 {18 int increment(); 19 void reset();20 }21