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