コード例 #1
0
  public ThreadGroupReferenceProxyImpl getThreadGroupReferenceProxy(ThreadGroupReference group) {
    DebuggerManagerThreadImpl.assertIsManagerThread();
    if (group == null) {
      return null;
    }

    ThreadGroupReferenceProxyImpl proxy = myThreadGroups.get(group);
    if (proxy == null) {
      if (!myIsJ2ME.isAvailable()) {
        proxy = new ThreadGroupReferenceProxyImpl(this, group);
        myThreadGroups.put(group, proxy);
      }
    }

    return proxy;
  }
コード例 #2
0
 public boolean canRequestVMDeathEvent() {
   return myRequestVMDeathEvent.isAvailable();
 }
コード例 #3
0
 public boolean canGetSourceDebugExtension() {
   return myGetSourceDebugExtension.isAvailable();
 }
コード例 #4
0
 public boolean canGetInstanceInfo() {
   return myCanGetInstanceInfo.isAvailable();
 }
コード例 #5
0
 public boolean canForceEarlyReturn() {
   return myForceEarlyReturn.isAvailable();
 }
コード例 #6
0
 public boolean canPopFrames() {
   return myPopFrames.isAvailable();
 }
コード例 #7
0
 public boolean canUnrestrictedlyRedefineClasses() {
   return myUnrestrictedlyRedefineClasses.isAvailable();
 }
コード例 #8
0
 public boolean canWatchFieldAccess() {
   return myWatchFieldAccess.isAvailable();
 }
コード例 #9
0
 public boolean canRedefineClasses() {
   return myRedefineClasses.isAvailable();
 }
コード例 #10
0
 public boolean canUseInstanceFilters() {
   return myUseInstanceFilters.isAvailable();
 }
コード例 #11
0
 public boolean canGetMonitorInfo() {
   return myGetMonitorInfo.isAvailable();
 }
コード例 #12
0
 public boolean canGetCurrentContendedMonitor() {
   return myGetCurrentContendedMonitor.isAvailable();
 }
コード例 #13
0
 public boolean canGetSyntheticAttribute() {
   return myGetSyntheticAttribute.isAvailable();
 }
コード例 #14
0
 public boolean canGetBytecodes() {
   return myGetBytecodes.isAvailable();
 }
コード例 #15
0
 public boolean canInvokeMethods() {
   return !myIsJ2ME.isAvailable();
 }
コード例 #16
0
 public boolean canGetMethodReturnValues() {
   return myGetMethodReturnValues.isAvailable();
 }
コード例 #17
0
 public boolean canAddMethod() {
   return myAddMethod.isAvailable();
 }
コード例 #18
0
 public boolean canWatchFieldModification() {
   return myWatchFielsModification.isAvailable();
 }