Package net.sf.rej.gui.tab

Examples of net.sf.rej.gui.tab.DebugTab


    try {
      @SuppressWarnings("unused")
      Class c = Class.forName("com.sun.jdi.Bootstrap");
      // JDI classes found on path, go ahead and create
      // the debug tab.
      return new DebugTab();
    } catch(ClassNotFoundException ncdfe) {
      logger.warning("Class com.sun.jdi.Bootstrap not found. Probably due to the fact that JDI library (tools.jar) is not on classpath. In order to have debugging support, please correct this and restart reJ.");
      return new NoDebugTab();
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.tab.DebugTab

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.