コード例 #1
0
 public String startLocalManagementAgent() {
   return ReflectUtil.callMethod(wrapped, "startLocalManagementAgent", new Class<?>[0]);
 }
コード例 #2
0
 public void loadAgent(final String agent, final String options) {
   ReflectUtil.callMethod(
       wrapped, "loadAgent", new Class<?>[] {String.class, String.class}, agent, options);
 }
コード例 #3
0
 public Properties getSystemProperties() {
   return ReflectUtil.callMethod(wrapped, "getSystemProperties", new Class<?>[0]);
 }
コード例 #4
0
 public String id() {
   return ReflectUtil.callMethod(wrapped, "id", new Class<?>[0]);
 }
コード例 #5
0
 @Override
 public void close() {
   ReflectUtil.callMethod(wrapped, "detach", new Class<?>[0]);
 }