01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.jmx;
09
10 /**
11 * Counter interface used for AOP and JMX proxy
12 *
13 *@author Terracotta, Inc.
14 */
15 public interface ICounter {
16 public int next();
17
18 public int getCurrent();
19
20 public String getName();
21 }
|