Uses of Class
com.bea.jvm.UnapplicableMethodException

Packages that use UnapplicableMethodException
com.bea.jvm Provides the interfaces and the factory class for the JRockit management API.  
 

Uses of UnapplicableMethodException in com.bea.jvm
 

Methods in com.bea.jvm that throw UnapplicableMethodException
 void ProfilingSystem.setInvocationCountEnabled(java.lang.reflect.Method method, boolean enable)
          Enables or disables invocation counting for the specified method depending on the enable argument.
 boolean ProfilingSystem.isInvocationCountEnabled(java.lang.reflect.Method method)
          Returns true if invocation counting is enabled for the specified method.
 long ProfilingSystem.getInvocationCount(java.lang.reflect.Method method)
          Returns the invocation count since enabling invocation counting for the for the specified method.
 long ProfilingSystem.getInvocationCount(java.lang.reflect.Constructor constructor)
          Returns the invocation count since enabling invocation counting for the for the specified constructor.
 void ProfilingSystem.setTimingEnabled(java.lang.reflect.Method method, boolean enable)
          Enables or disables timing (that is, measure time spent in) depending on the enable argument.
 boolean ProfilingSystem.isTimingEnabled(java.lang.reflect.Method method)
          Checks whether timing is enabled or not for a certain method.
 long ProfilingSystem.getTiming(java.lang.reflect.Method method)
          Returns the amount of time spent performing work in the method, since enabling timing (in miliseconds).