1 22 package org.jboss.test.jbossmx.performance.standard.support; 23 24 import javax.management.Attribute ; 25 26 31 public class Standard 32 implements StandardMBean 33 { 34 35 private int counter = 0; 36 37 public void methodInvocation() {} 38 39 public void counter() { 40 ++counter; 41 } 42 43 public int getCount() { 44 return counter; 45 } 46 47 public void mixedArguments(Integer int1, int int2, Object [][][] space, Attribute attr) { 48 49 } 50 51 } 52 53 54 55 56 | Popular Tags |