01: /* 02: @COPYRIGHT@ 03: */ 04: package demo.jmx; 05: 06: /** 07: * Counter interface used for AOP and JMX proxy 08: */ 09: public interface ICounter { 10: public int next(); 11: 12: public int getCurrent(); 13: 14: public String getName(); 15: }