1 7 package com.sun.jmx.trace; 8 9 import java.io.IOException ; 10 11 17 public interface TraceDestination { 18 19 29 public boolean isSelected(int level, int type); 30 31 43 public boolean send(int level, 44 int type, 45 String className, 46 String methodName, 47 String info); 48 49 60 public boolean send(int level, 61 int type, 62 String className, 63 String methodName, 64 Throwable exception); 65 66 73 public void reset() throws IOException ; 74 } 75 76 | Popular Tags |