Examples of majorInterfaceVersion()


Examples of com.sun.jdi.VirtualMachineManager.majorInterfaceVersion()

   */
  public static int[] getJDIVersion() {
    if (fJDIVersion == null) {
      fJDIVersion = new int[2];
      VirtualMachineManager mgr = Bootstrap.virtualMachineManager();
      fJDIVersion[0] = mgr.majorInterfaceVersion();
      fJDIVersion[1] = mgr.minorInterfaceVersion();
    }
    return fJDIVersion;
  }

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.