public class org.eclipse.jdt.internal.launching.JREContainerInitializer extends org.eclipse.jdt.core.ClasspathContainerInitializer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.launching.JREContainerInitializer
  super_class: org.eclipse.jdt.core.ClasspathContainerInitializer
{
  private static final org.eclipse.core.runtime.IStatus READ_ONLY;
    descriptor: Lorg/eclipse/core/runtime/IStatus;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.eclipse.core.runtime.IStatus NOT_SUPPORTED;
    descriptor: Lorg/eclipse/core/runtime/IStatus;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=0, args_size=0
         0: .line 295
            new org.eclipse.core.runtime.Status
            dup
            iconst_4
            ldc "org.eclipse.jdt.launching"
            iconst_2
            new java.lang.String
            dup
            invokespecial java.lang.String.<init>:()V
            aconst_null
            invokespecial org.eclipse.core.runtime.Status.<init>:(ILjava/lang/String;ILjava/lang/String;Ljava/lang/Throwable;)V
            putstatic org.eclipse.jdt.internal.launching.JREContainerInitializer.READ_ONLY:Lorg/eclipse/core/runtime/IStatus;
         1: .line 296
            new org.eclipse.core.runtime.Status
            dup
            iconst_4
            ldc "org.eclipse.jdt.launching"
            iconst_1
            new java.lang.String
            dup
            invokespecial java.lang.String.<init>:()V
            aconst_null
            invokespecial org.eclipse.core.runtime.Status.<init>:(ILjava/lang/String;ILjava/lang/String;Ljava/lang/Throwable;)V
            putstatic org.eclipse.jdt.internal.launching.JREContainerInitializer.NOT_SUPPORTED:Lorg/eclipse/core/runtime/IStatus;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
         0: .line 48
            aload 0 /* this */
            invokespecial org.eclipse.jdt.core.ClasspathContainerInitializer.<init>:()V
            return
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;

  public void initialize(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
         0: .line 55
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 4
         1: .line 56
            ldc "<JRE_CONTAINER> initialize()"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         2: .line 57
            new java.lang.StringBuilder
            dup
            ldc "\tPath: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         3: .line 58
            new java.lang.StringBuilder
            dup
            ldc "\tProj: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* project */
            invokeinterface org.eclipse.jdt.core.IJavaProject.getProject:()Lorg/eclipse/core/resources/IProject;
            invokeinterface org.eclipse.core.resources.IProject.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         4: .line 60
      StackMap locals:
      StackMap stack:
            aload 1 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.segmentCount:()I
            istore 3 /* size */
        start local 3 // int size
         5: .line 61
            iload 3 /* size */
            ifle 21
         6: .line 62
            aload 1 /* containerPath */
            iconst_0
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            getstatic org.eclipse.jdt.launching.JavaRuntime.JRE_CONTAINER:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 18
         7: .line 63
            aload 1 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.resolveVM:(Lorg/eclipse/core/runtime/IPath;)Lorg/eclipse/jdt/launching/IVMInstall;
            astore 4 /* vm */
        start local 4 // org.eclipse.jdt.launching.IVMInstall vm
         8: .line 64
            aconst_null
            astore 5 /* container */
        start local 5 // org.eclipse.jdt.internal.launching.JREContainer container
         9: .line 65
            aload 4 /* vm */
            ifnull 14
        10: .line 66
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 12
        11: .line 67
            new java.lang.StringBuilder
            dup
            ldc "\tResolved VM: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* vm */
            invokeinterface org.eclipse.jdt.launching.IVMInstall.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        12: .line 69
      StackMap locals: int org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.internal.launching.JREContainer
      StackMap stack:
            new org.eclipse.jdt.internal.launching.JREContainer
            dup
            aload 4 /* vm */
            aload 1 /* containerPath */
            aload 2 /* project */
            invokespecial org.eclipse.jdt.internal.launching.JREContainer.<init>:(Lorg/eclipse/jdt/launching/IVMInstall;Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)V
            astore 5 /* container */
        13: .line 70
            goto 16
        14: .line 71
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 16
        15: .line 72
            ldc "\t*** FAILED RESOLVE VM ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        16: .line 75
      StackMap locals:
      StackMap stack:
            aload 1 /* containerPath */
            iconst_1
            anewarray org.eclipse.jdt.core.IJavaProject
            dup
            iconst_0
            aload 2 /* project */
            aastore
            iconst_1
            anewarray org.eclipse.jdt.core.IClasspathContainer
            dup
            iconst_0
            aload 5 /* container */
            aastore
            aconst_null
            invokestatic org.eclipse.jdt.core.JavaCore.setClasspathContainer:(Lorg/eclipse/core/runtime/IPath;[Lorg/eclipse/jdt/core/IJavaProject;[Lorg/eclipse/jdt/core/IClasspathContainer;Lorg/eclipse/core/runtime/IProgressMonitor;)V
        end local 5 // org.eclipse.jdt.internal.launching.JREContainer container
        end local 4 // org.eclipse.jdt.launching.IVMInstall vm
        17: .line 76
            goto 23
        18: .line 77
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 23
        19: .line 78
            ldc "\t*** INVALID JRE CONTAINER PATH ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        20: .line 81
            goto 23
        21: .line 82
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 23
        22: .line 83
            ldc "\t*** NO SEGMENTS IN CONTAINER PATH ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        23: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int size
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   24     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0   24     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0   24     2        project  Lorg/eclipse/jdt/core/IJavaProject;
            5   24     3           size  I
            8   17     4             vm  Lorg/eclipse/jdt/launching/IVMInstall;
            9   17     5      container  Lorg/eclipse/jdt/internal/launching/JREContainer;
    Exceptions:
      throws org.eclipse.core.runtime.CoreException
    MethodParameters:
               Name  Flags
      containerPath  
      project        

  public void initialize(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject[]);
    descriptor: (Lorg/eclipse/core/runtime/IPath;[Lorg/eclipse/jdt/core/IJavaProject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=8, args_size=3
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject[] projects
         0: .line 96
            aload 1 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.segmentCount:()I
            istore 3 /* size */
        start local 3 // int size
         1: .line 97
            iload 3 /* size */
            ifle 22
         2: .line 98
            aload 1 /* containerPath */
            iconst_0
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            getstatic org.eclipse.jdt.launching.JavaRuntime.JRE_CONTAINER:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 19
         3: .line 99
            aload 2 /* projects */
            arraylength
            istore 4 /* length */
        start local 4 // int length
         4: .line 100
            aload 1 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.resolveVM:(Lorg/eclipse/core/runtime/IPath;)Lorg/eclipse/jdt/launching/IVMInstall;
            astore 5 /* vm */
        start local 5 // org.eclipse.jdt.launching.IVMInstall vm
         5: .line 101
            iload 4 /* length */
            anewarray org.eclipse.jdt.internal.launching.JREContainer
            astore 6 /* containers */
        start local 6 // org.eclipse.jdt.core.IClasspathContainer[] containers
         6: .line 102
            aload 5 /* vm */
            ifnull 15
         7: .line 103
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 9
         8: .line 104
            new java.lang.StringBuilder
            dup
            ldc "\tResolved VM: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* vm */
            invokeinterface org.eclipse.jdt.launching.IVMInstall.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         9: .line 106
      StackMap locals: org.eclipse.jdt.internal.launching.JREContainerInitializer org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IJavaProject[] int int org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.core.IClasspathContainer[]
      StackMap stack:
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        10: goto 13
        11: .line 107
      StackMap locals: int
      StackMap stack:
            aload 6 /* containers */
            iload 7 /* i */
            new org.eclipse.jdt.internal.launching.JREContainer
            dup
            aload 5 /* vm */
            aload 1 /* containerPath */
            aload 2 /* projects */
            iload 7 /* i */
            aaload
            invokespecial org.eclipse.jdt.internal.launching.JREContainer.<init>:(Lorg/eclipse/jdt/launching/IVMInstall;Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)V
            aastore
        12: .line 106
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 7 /* i */
            iload 4 /* length */
            if_icmplt 11
        end local 7 // int i
        14: .line 109
            goto 17
        15: .line 110
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 17
        16: .line 111
            ldc "\t*** FAILED RESOLVE VM ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        17: .line 114
      StackMap locals:
      StackMap stack:
            aload 1 /* containerPath */
            aload 2 /* projects */
            aload 6 /* containers */
            aconst_null
            invokestatic org.eclipse.jdt.core.JavaCore.setClasspathContainer:(Lorg/eclipse/core/runtime/IPath;[Lorg/eclipse/jdt/core/IJavaProject;[Lorg/eclipse/jdt/core/IClasspathContainer;Lorg/eclipse/core/runtime/IProgressMonitor;)V
        end local 6 // org.eclipse.jdt.core.IClasspathContainer[] containers
        end local 5 // org.eclipse.jdt.launching.IVMInstall vm
        end local 4 // int length
        18: .line 115
            goto 24
        19: .line 116
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 24
        20: .line 117
            ldc "\t*** INVALID JRE CONTAINER PATH ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        21: .line 120
            goto 24
        22: .line 121
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 24
        23: .line 122
            ldc "\t*** NO SEGMENTS IN CONTAINER PATH ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        24: .line 125
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int size
        end local 2 // org.eclipse.jdt.core.IJavaProject[] projects
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   25     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0   25     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0   25     2       projects  [Lorg/eclipse/jdt/core/IJavaProject;
            1   25     3           size  I
            4   18     4         length  I
            5   18     5             vm  Lorg/eclipse/jdt/launching/IVMInstall;
            6   18     6     containers  [Lorg/eclipse/jdt/core/IClasspathContainer;
           10   14     7              i  I
    Exceptions:
      throws org.eclipse.core.runtime.CoreException
    MethodParameters:
               Name  Flags
      containerPath  
      projects       

  public static org.eclipse.jdt.launching.IVMInstall resolveVM(org.eclipse.core.runtime.IPath);
    descriptor: (Lorg/eclipse/core/runtime/IPath;)Lorg/eclipse/jdt/launching/IVMInstall;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.eclipse.core.runtime.IPath containerPath
         0: .line 134
            aconst_null
            astore 1 /* vm */
        start local 1 // org.eclipse.jdt.launching.IVMInstall vm
         1: .line 135
            aload 0 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.segmentCount:()I
            iconst_1
            if_icmple 21
         2: .line 137
            aload 0 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getExecutionEnvironmentId:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            astore 2 /* id */
        start local 2 // java.lang.String id
         3: .line 138
            aload 2 /* id */
            ifnull 15
         4: .line 139
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 7
         5: .line 140
            ldc "<JRE_CONTAINER> resolveVM(IPath)"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         6: .line 141
            new java.lang.StringBuilder
            dup
            ldc "\tEE: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* id */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         7: .line 143
      StackMap locals: org.eclipse.jdt.launching.IVMInstall java.lang.String
      StackMap stack:
            invokestatic org.eclipse.jdt.launching.JavaRuntime.getExecutionEnvironmentsManager:()Lorg/eclipse/jdt/launching/environments/IExecutionEnvironmentsManager;
            astore 3 /* manager */
        start local 3 // org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager manager
         8: .line 144
            aload 3 /* manager */
            aload 2 /* id */
            invokeinterface org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager.getEnvironment:(Ljava/lang/String;)Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;
            astore 4 /* environment */
        start local 4 // org.eclipse.jdt.launching.environments.IExecutionEnvironment environment
         9: .line 145
            aload 4 /* environment */
            ifnull 12
        10: .line 146
            aload 4 /* environment */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.resolveVM:(Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;)Lorg/eclipse/jdt/launching/IVMInstall;
            astore 1 /* vm */
        11: .line 147
            goto 22
        12: .line 148
      StackMap locals: org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager org.eclipse.jdt.launching.environments.IExecutionEnvironment
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 22
        13: .line 149
            ldc "\t*** NO ENVIRONMENT ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        end local 4 // org.eclipse.jdt.launching.environments.IExecutionEnvironment environment
        end local 3 // org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager manager
        14: .line 152
            goto 22
        15: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getVMTypeId:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            astore 3 /* vmTypeId */
        start local 3 // java.lang.String vmTypeId
        16: .line 154
            aload 0 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getVMName:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            astore 4 /* vmName */
        start local 4 // java.lang.String vmName
        17: .line 155
            aload 3 /* vmTypeId */
            invokestatic org.eclipse.jdt.launching.JavaRuntime.getVMInstallType:(Ljava/lang/String;)Lorg/eclipse/jdt/launching/IVMInstallType;
            astore 5 /* vmType */
        start local 5 // org.eclipse.jdt.launching.IVMInstallType vmType
        18: .line 156
            aload 5 /* vmType */
            ifnull 22
        19: .line 157
            aload 5 /* vmType */
            aload 4 /* vmName */
            invokeinterface org.eclipse.jdt.launching.IVMInstallType.findVMInstallByName:(Ljava/lang/String;)Lorg/eclipse/jdt/launching/IVMInstall;
            astore 1 /* vm */
        end local 5 // org.eclipse.jdt.launching.IVMInstallType vmType
        end local 4 // java.lang.String vmName
        end local 3 // java.lang.String vmTypeId
        end local 2 // java.lang.String id
        20: .line 160
            goto 22
        21: .line 162
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.jdt.launching.JavaRuntime.getDefaultVMInstall:()Lorg/eclipse/jdt/launching/IVMInstall;
            astore 1 /* vm */
        22: .line 164
      StackMap locals:
      StackMap stack:
            aload 1 /* vm */
            areturn
        end local 1 // org.eclipse.jdt.launching.IVMInstall vm
        end local 0 // org.eclipse.core.runtime.IPath containerPath
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0  containerPath  Lorg/eclipse/core/runtime/IPath;
            1   23     1             vm  Lorg/eclipse/jdt/launching/IVMInstall;
            3   20     2             id  Ljava/lang/String;
            8   14     3        manager  Lorg/eclipse/jdt/launching/environments/IExecutionEnvironmentsManager;
            9   14     4    environment  Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;
           16   20     3       vmTypeId  Ljava/lang/String;
           17   20     4         vmName  Ljava/lang/String;
           18   20     5         vmType  Lorg/eclipse/jdt/launching/IVMInstallType;
    MethodParameters:
               Name  Flags
      containerPath  

  public static org.eclipse.jdt.launching.IVMInstall resolveVM(org.eclipse.jdt.launching.environments.IExecutionEnvironment);
    descriptor: (Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;)Lorg/eclipse/jdt/launching/IVMInstall;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.eclipse.jdt.launching.environments.IExecutionEnvironment environment
         0: .line 176
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 2
         1: .line 177
            ldc "<JRE_CONTAINER> resolveVM(IExecutionEnvironment)"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         2: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* environment */
            invokeinterface org.eclipse.jdt.launching.environments.IExecutionEnvironment.getDefaultVM:()Lorg/eclipse/jdt/launching/IVMInstall;
            astore 1 /* vm */
        start local 1 // org.eclipse.jdt.launching.IVMInstall vm
         3: .line 180
            aload 1 /* vm */
            ifnonnull 24
         4: .line 181
            aload 0 /* environment */
            invokeinterface org.eclipse.jdt.launching.environments.IExecutionEnvironment.getCompatibleVMs:()[Lorg/eclipse/jdt/launching/IVMInstall;
            astore 2 /* installs */
        start local 2 // org.eclipse.jdt.launching.IVMInstall[] installs
         5: .line 183
            aload 2 /* installs */
            arraylength
            ifne 7
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 7
         6: .line 184
            ldc "\t*** NO COMPATIBLE VMS ***"
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
         7: .line 186
      StackMap locals: org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.launching.IVMInstall[]
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 16
         9: .line 187
      StackMap locals: int
      StackMap stack:
            aload 2 /* installs */
            iload 3 /* i */
            aaload
            astore 4 /* install */
        start local 4 // org.eclipse.jdt.launching.IVMInstall install
        10: .line 188
            aload 0 /* environment */
            aload 4 /* install */
            invokeinterface org.eclipse.jdt.launching.environments.IExecutionEnvironment.isStrictlyCompatible:(Lorg/eclipse/jdt/launching/IVMInstall;)Z
            ifeq 15
        11: .line 189
            aload 4 /* install */
            astore 1 /* vm */
        12: .line 190
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 17
        13: .line 191
            new java.lang.StringBuilder
            dup
            ldc "\tPerfect Match: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* vm */
            invokeinterface org.eclipse.jdt.launching.IVMInstall.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        14: .line 193
            goto 17
        end local 4 // org.eclipse.jdt.launching.IVMInstall install
        15: .line 186
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 2 /* installs */
            arraylength
            if_icmplt 9
        end local 3 // int i
        17: .line 198
      StackMap locals:
      StackMap stack:
            aload 1 /* vm */
            ifnonnull 19
            aload 2 /* installs */
            arraylength
            ifle 19
            aload 2 /* installs */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.eclipse.jdt.launching.JavaRuntime.getDefaultVMInstall:()Lorg/eclipse/jdt/launching/IVMInstall;
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifeq 19
        18: .line 199
            invokestatic org.eclipse.jdt.launching.JavaRuntime.getDefaultVMInstall:()Lorg/eclipse/jdt/launching/IVMInstall;
            astore 1 /* vm */
        19: .line 202
      StackMap locals:
      StackMap stack:
            aload 1 /* vm */
            ifnonnull 26
            aload 2 /* installs */
            arraylength
            ifle 26
        20: .line 203
            aload 2 /* installs */
            iconst_0
            aaload
            astore 1 /* vm */
        21: .line 204
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 26
        22: .line 205
            new java.lang.StringBuilder
            dup
            ldc "\tFirst Match: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* vm */
            invokeinterface org.eclipse.jdt.launching.IVMInstall.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        end local 2 // org.eclipse.jdt.launching.IVMInstall[] installs
        23: .line 208
            goto 26
        24: .line 209
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingPlugin.DEBUG_JRE_CONTAINER:Z
            ifeq 26
        25: .line 210
            new java.lang.StringBuilder
            dup
            ldc "\tUser Default VM: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* vm */
            invokeinterface org.eclipse.jdt.launching.IVMInstall.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.trace:(Ljava/lang/String;)V
        26: .line 213
      StackMap locals:
      StackMap stack:
            aload 1 /* vm */
            areturn
        end local 1 // org.eclipse.jdt.launching.IVMInstall vm
        end local 0 // org.eclipse.jdt.launching.environments.IExecutionEnvironment environment
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0  environment  Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;
            3   27     1           vm  Lorg/eclipse/jdt/launching/IVMInstall;
            5   23     2     installs  [Lorg/eclipse/jdt/launching/IVMInstall;
            8   17     3            i  I
           10   15     4      install  Lorg/eclipse/jdt/launching/IVMInstall;
    MethodParameters:
             Name  Flags
      environment  

  public static java.lang.String getExecutionEnvironmentId(org.eclipse.core.runtime.IPath);
    descriptor: (Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.core.runtime.IPath path
         0: .line 224
            aload 0 /* path */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getVMName:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            astore 1 /* name */
        start local 1 // java.lang.String name
         1: .line 225
            aload 1 /* name */
            ifnull 7
         2: .line 226
            aload 1 /* name */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.decodeEnvironmentId:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* name */
         3: .line 227
            invokestatic org.eclipse.jdt.launching.JavaRuntime.getExecutionEnvironmentsManager:()Lorg/eclipse/jdt/launching/environments/IExecutionEnvironmentsManager;
            astore 2 /* manager */
        start local 2 // org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager manager
         4: .line 228
            aload 2 /* manager */
            aload 1 /* name */
            invokeinterface org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager.getEnvironment:(Ljava/lang/String;)Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;
            astore 3 /* environment */
        start local 3 // org.eclipse.jdt.launching.environments.IExecutionEnvironment environment
         5: .line 229
            aload 3 /* environment */
            ifnull 7
         6: .line 230
            aload 3 /* environment */
            invokeinterface org.eclipse.jdt.launching.environments.IExecutionEnvironment.getId:()Ljava/lang/String;
            areturn
        end local 3 // org.eclipse.jdt.launching.environments.IExecutionEnvironment environment
        end local 2 // org.eclipse.jdt.launching.environments.IExecutionEnvironmentsManager manager
         7: .line 233
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.core.runtime.IPath path
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         path  Lorg/eclipse/core/runtime/IPath;
            1    8     1         name  Ljava/lang/String;
            4    7     2      manager  Lorg/eclipse/jdt/launching/environments/IExecutionEnvironmentsManager;
            5    7     3  environment  Lorg/eclipse/jdt/launching/environments/IExecutionEnvironment;
    MethodParameters:
      Name  Flags
      path  

  public static boolean isExecutionEnvironment(org.eclipse.core.runtime.IPath);
    descriptor: (Lorg/eclipse/core/runtime/IPath;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.core.runtime.IPath path
         0: .line 243
            aload 0 /* path */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getExecutionEnvironmentId:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.core.runtime.IPath path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  path  Lorg/eclipse/core/runtime/IPath;
    MethodParameters:
      Name  Flags
      path  

  public static java.lang.String encodeEnvironmentId(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String id
         0: .line 253
            aload 0 /* id */
            bipush 47
            bipush 37
            invokevirtual java.lang.String.replace:(CC)Ljava/lang/String;
            areturn
        end local 0 // java.lang.String id
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    id  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      id    

  public static java.lang.String decodeEnvironmentId(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String id
         0: .line 257
            aload 0 /* id */
            bipush 37
            bipush 47
            invokevirtual java.lang.String.replace:(CC)Ljava/lang/String;
            areturn
        end local 0 // java.lang.String id
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    id  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      id    

  public static java.lang.String getVMTypeId(org.eclipse.core.runtime.IPath);
    descriptor: (Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.core.runtime.IPath path
         0: .line 267
            aload 0 /* path */
            iconst_1
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.core.runtime.IPath path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  path  Lorg/eclipse/core/runtime/IPath;
    MethodParameters:
      Name  Flags
      path  

  public static java.lang.String getVMName(org.eclipse.core.runtime.IPath);
    descriptor: (Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.core.runtime.IPath path
         0: .line 277
            aload 0 /* path */
            iconst_2
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.core.runtime.IPath path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  path  Lorg/eclipse/core/runtime/IPath;
    MethodParameters:
      Name  Flags
      path  

  public boolean canUpdateClasspathContainer(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
         0: .line 287
            aload 1 /* containerPath */
            ifnull 4
            aload 1 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.segmentCount:()I
            ifle 4
         1: .line 288
            getstatic org.eclipse.jdt.launching.JavaRuntime.JRE_CONTAINER:Ljava/lang/String;
            aload 1 /* containerPath */
            iconst_0
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 289
            aload 1 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.resolveVM:(Lorg/eclipse/core/runtime/IPath;)Lorg/eclipse/jdt/launching/IVMInstall;
            ifnull 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
         4: .line 292
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0    5     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0    5     2        project  Lorg/eclipse/jdt/core/IJavaProject;
    MethodParameters:
               Name  Flags
      containerPath  
      project        

  public org.eclipse.core.runtime.IStatus getAccessRulesStatus(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)Lorg/eclipse/core/runtime/IStatus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
         0: .line 303
            getstatic org.eclipse.jdt.internal.launching.JREContainerInitializer.READ_ONLY:Lorg/eclipse/core/runtime/IStatus;
            areturn
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0    1     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0    1     2        project  Lorg/eclipse/jdt/core/IJavaProject;
    MethodParameters:
               Name  Flags
      containerPath  
      project        

  public org.eclipse.core.runtime.IStatus getSourceAttachmentStatus(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)Lorg/eclipse/core/runtime/IStatus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
         0: .line 311
            getstatic org.eclipse.core.runtime.Status.OK_STATUS:Lorg/eclipse/core/runtime/IStatus;
            areturn
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0    1     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0    1     2        project  Lorg/eclipse/jdt/core/IJavaProject;
    MethodParameters:
               Name  Flags
      containerPath  
      project        

  public org.eclipse.core.runtime.IStatus getAttributeStatus(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject, java.lang.String);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;Ljava/lang/String;)Lorg/eclipse/core/runtime/IStatus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
        start local 3 // java.lang.String attributeKey
         0: .line 319
            aload 3 /* attributeKey */
            ldc "javadoc_location"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 320
            getstatic org.eclipse.core.runtime.Status.OK_STATUS:Lorg/eclipse/core/runtime/IStatus;
            areturn
         2: .line 322
      StackMap locals:
      StackMap stack:
            aload 3 /* attributeKey */
            ldc "annotationpath"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 323
            getstatic org.eclipse.core.runtime.Status.OK_STATUS:Lorg/eclipse/core/runtime/IStatus;
            areturn
         4: .line 325
      StackMap locals:
      StackMap stack:
            aload 3 /* attributeKey */
            getstatic org.eclipse.jdt.launching.JavaRuntime.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 326
            getstatic org.eclipse.core.runtime.Status.OK_STATUS:Lorg/eclipse/core/runtime/IStatus;
            areturn
         6: .line 328
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.JREContainerInitializer.NOT_SUPPORTED:Lorg/eclipse/core/runtime/IStatus;
            areturn
        end local 3 // java.lang.String attributeKey
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0    7     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0    7     2        project  Lorg/eclipse/jdt/core/IJavaProject;
            0    7     3   attributeKey  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      containerPath  
      project        
      attributeKey   

  public void requestClasspathContainerUpdate(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject, org.eclipse.jdt.core.IClasspathContainer);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;Lorg/eclipse/jdt/core/IClasspathContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=20, args_size=4
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
        start local 3 // org.eclipse.jdt.core.IClasspathContainer containerSuggestion
         0: .line 336
            aload 1 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.resolveVM:(Lorg/eclipse/core/runtime/IPath;)Lorg/eclipse/jdt/launching/IVMInstall;
            astore 4 /* vm */
        start local 4 // org.eclipse.jdt.launching.IVMInstall vm
         1: .line 337
            aload 4 /* vm */
            ifnonnull 4
         2: .line 338
            new org.eclipse.core.runtime.Status
            dup
            iconst_4
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.getUniqueIdentifier:()Ljava/lang/String;
            bipush 105
            getstatic org.eclipse.jdt.internal.launching.LaunchingMessages.JREContainerInitializer_JRE_referenced_by_classpath_container__0__does_not_exist__1:Ljava/lang/String;
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            aload 1 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.toString:()Ljava/lang/String;
            aastore
            invokestatic org.eclipse.osgi.util.NLS.bind:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            aconst_null
            invokespecial org.eclipse.core.runtime.Status.<init>:(ILjava/lang/String;ILjava/lang/String;Ljava/lang/Throwable;)V
            astore 5 /* status */
        start local 5 // org.eclipse.core.runtime.IStatus status
         3: .line 339
            new org.eclipse.core.runtime.CoreException
            dup
            aload 5 /* status */
            invokespecial org.eclipse.core.runtime.CoreException.<init>:(Lorg/eclipse/core/runtime/IStatus;)V
            athrow
        end local 5 // org.eclipse.core.runtime.IStatus status
         4: .line 343
      StackMap locals: org.eclipse.jdt.launching.IVMInstall
      StackMap stack:
            aload 3 /* containerSuggestion */
            invokeinterface org.eclipse.jdt.core.IClasspathContainer.getClasspathEntries:()[Lorg/eclipse/jdt/core/IClasspathEntry;
            astore 5 /* entries */
        start local 5 // org.eclipse.jdt.core.IClasspathEntry[] entries
         5: .line 344
            aload 5 /* entries */
            arraylength
            anewarray org.eclipse.jdt.launching.LibraryLocation
            astore 6 /* libs */
        start local 6 // org.eclipse.jdt.launching.LibraryLocation[] libs
         6: .line 345
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         7: goto 49
         8: .line 346
      StackMap locals: org.eclipse.jdt.core.IClasspathEntry[] org.eclipse.jdt.launching.LibraryLocation[] int
      StackMap stack:
            aload 5 /* entries */
            iload 7 /* i */
            aaload
            astore 8 /* entry */
        start local 8 // org.eclipse.jdt.core.IClasspathEntry entry
         9: .line 347
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getEntryKind:()I
            iconst_1
            if_icmpne 46
        10: .line 348
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getPath:()Lorg/eclipse/core/runtime/IPath;
            astore 9 /* path */
        start local 9 // org.eclipse.core.runtime.IPath path
        11: .line 349
            aload 9 /* path */
            invokeinterface org.eclipse.core.runtime.IPath.toFile:()Ljava/io/File;
            astore 10 /* lib */
        start local 10 // java.io.File lib
        12: .line 350
            aload 10 /* lib */
            invokevirtual java.io.File.exists:()Z
            ifeq 44
            aload 10 /* lib */
            invokevirtual java.io.File.isFile:()Z
            ifeq 44
        13: .line 351
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getSourceAttachmentPath:()Lorg/eclipse/core/runtime/IPath;
            astore 11 /* srcPath */
        start local 11 // org.eclipse.core.runtime.IPath srcPath
        14: .line 352
            aload 11 /* srcPath */
            ifnonnull 16
        15: .line 353
            getstatic org.eclipse.core.runtime.Path.EMPTY:Lorg/eclipse/core/runtime/Path;
            astore 11 /* srcPath */
        16: .line 355
      StackMap locals: org.eclipse.jdt.internal.launching.JREContainerInitializer org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IJavaProject org.eclipse.jdt.core.IClasspathContainer org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.core.IClasspathEntry[] org.eclipse.jdt.launching.LibraryLocation[] int org.eclipse.jdt.core.IClasspathEntry org.eclipse.core.runtime.IPath java.io.File org.eclipse.core.runtime.IPath
      StackMap stack:
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getSourceAttachmentRootPath:()Lorg/eclipse/core/runtime/IPath;
            astore 12 /* rootPath */
        start local 12 // org.eclipse.core.runtime.IPath rootPath
        17: .line 356
            aload 12 /* rootPath */
            ifnonnull 19
        18: .line 357
            getstatic org.eclipse.core.runtime.Path.EMPTY:Lorg/eclipse/core/runtime/Path;
            astore 12 /* rootPath */
        19: .line 359
      StackMap locals: org.eclipse.core.runtime.IPath
      StackMap stack:
            aconst_null
            astore 13 /* javadocLocation */
        start local 13 // java.net.URL javadocLocation
        20: .line 360
            aconst_null
            astore 14 /* externalAnnotations */
        start local 14 // org.eclipse.core.runtime.IPath externalAnnotations
        21: .line 361
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getExtraAttributes:()[Lorg/eclipse/jdt/core/IClasspathAttribute;
            astore 15 /* extraAttributes */
        start local 15 // org.eclipse.jdt.core.IClasspathAttribute[] extraAttributes
        22: .line 362
            iconst_0
            istore 16 /* j */
        start local 16 // int j
        23: goto 41
        24: .line 363
      StackMap locals: org.eclipse.jdt.internal.launching.JREContainerInitializer org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IJavaProject org.eclipse.jdt.core.IClasspathContainer org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.core.IClasspathEntry[] org.eclipse.jdt.launching.LibraryLocation[] int org.eclipse.jdt.core.IClasspathEntry org.eclipse.core.runtime.IPath java.io.File org.eclipse.core.runtime.IPath org.eclipse.core.runtime.IPath java.net.URL org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IClasspathAttribute[] int
      StackMap stack:
            aload 15 /* extraAttributes */
            iload 16 /* j */
            aaload
            astore 17 /* attribute */
        start local 17 // org.eclipse.jdt.core.IClasspathAttribute attribute
        25: .line 364
            aload 17 /* attribute */
            invokeinterface org.eclipse.jdt.core.IClasspathAttribute.getName:()Ljava/lang/String;
            ldc "javadoc_location"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 33
        26: .line 365
            aload 17 /* attribute */
            invokeinterface org.eclipse.jdt.core.IClasspathAttribute.getValue:()Ljava/lang/String;
            astore 18 /* url */
        start local 18 // java.lang.String url
        27: .line 366
            aload 18 /* url */
            ifnull 40
            aload 18 /* url */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifle 40
        28: .line 368
            new java.net.URL
            dup
            aload 18 /* url */
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 13 /* javadocLocation */
        29: .line 369
            goto 40
      StackMap locals: org.eclipse.jdt.internal.launching.JREContainerInitializer org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IJavaProject org.eclipse.jdt.core.IClasspathContainer org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.core.IClasspathEntry[] org.eclipse.jdt.launching.LibraryLocation[] int org.eclipse.jdt.core.IClasspathEntry org.eclipse.core.runtime.IPath java.io.File org.eclipse.core.runtime.IPath org.eclipse.core.runtime.IPath java.net.URL org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IClasspathAttribute[] int org.eclipse.jdt.core.IClasspathAttribute java.lang.String
      StackMap stack: java.net.MalformedURLException
        30: astore 19 /* e */
        start local 19 // java.net.MalformedURLException e
        31: .line 370
            aload 19 /* e */
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.log:(Ljava/lang/Throwable;)V
        end local 19 // java.net.MalformedURLException e
        end local 18 // java.lang.String url
        32: .line 373
            goto 40
      StackMap locals:
      StackMap stack:
        33: aload 17 /* attribute */
            invokeinterface org.eclipse.jdt.core.IClasspathAttribute.getName:()Ljava/lang/String;
            ldc "annotationpath"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 40
        34: .line 374
            aload 17 /* attribute */
            invokeinterface org.eclipse.jdt.core.IClasspathAttribute.getValue:()Ljava/lang/String;
            astore 18 /* xpath */
        start local 18 // java.lang.String xpath
        35: .line 375
            aload 18 /* xpath */
            ifnull 40
            aload 18 /* xpath */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifle 40
        36: .line 377
            aload 18 /* xpath */
            invokestatic org.eclipse.core.runtime.Path.fromPortableString:(Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath;
            astore 14 /* externalAnnotations */
        37: .line 378
            goto 40
      StackMap locals: org.eclipse.jdt.internal.launching.JREContainerInitializer org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IJavaProject org.eclipse.jdt.core.IClasspathContainer org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.core.IClasspathEntry[] org.eclipse.jdt.launching.LibraryLocation[] int org.eclipse.jdt.core.IClasspathEntry org.eclipse.core.runtime.IPath java.io.File org.eclipse.core.runtime.IPath org.eclipse.core.runtime.IPath java.net.URL org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IClasspathAttribute[] int org.eclipse.jdt.core.IClasspathAttribute java.lang.String
      StackMap stack: java.lang.Exception
        38: astore 19 /* x */
        start local 19 // java.lang.Exception x
        39: .line 379
            aload 19 /* x */
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.log:(Ljava/lang/Throwable;)V
        end local 19 // java.lang.Exception x
        end local 18 // java.lang.String xpath
        end local 17 // org.eclipse.jdt.core.IClasspathAttribute attribute
        40: .line 362
      StackMap locals:
      StackMap stack:
            iinc 16 /* j */ 1
      StackMap locals:
      StackMap stack:
        41: iload 16 /* j */
            aload 15 /* extraAttributes */
            arraylength
            if_icmplt 24
        end local 16 // int j
        42: .line 384
            aload 6 /* libs */
            iload 7 /* i */
            new org.eclipse.jdt.launching.LibraryLocation
            dup
            aload 9 /* path */
            aload 11 /* srcPath */
            aload 12 /* rootPath */
            aload 13 /* javadocLocation */
            aconst_null
            aload 14 /* externalAnnotations */
            invokespecial org.eclipse.jdt.launching.LibraryLocation.<init>:(Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/core/runtime/IPath;Ljava/net/URL;Ljava/net/URL;Lorg/eclipse/core/runtime/IPath;)V
            aastore
        end local 15 // org.eclipse.jdt.core.IClasspathAttribute[] extraAttributes
        end local 14 // org.eclipse.core.runtime.IPath externalAnnotations
        end local 13 // java.net.URL javadocLocation
        end local 12 // org.eclipse.core.runtime.IPath rootPath
        end local 11 // org.eclipse.core.runtime.IPath srcPath
        43: .line 385
            goto 48
        44: .line 386
      StackMap locals: org.eclipse.jdt.internal.launching.JREContainerInitializer org.eclipse.core.runtime.IPath org.eclipse.jdt.core.IJavaProject org.eclipse.jdt.core.IClasspathContainer org.eclipse.jdt.launching.IVMInstall org.eclipse.jdt.core.IClasspathEntry[] org.eclipse.jdt.launching.LibraryLocation[] int org.eclipse.jdt.core.IClasspathEntry org.eclipse.core.runtime.IPath java.io.File
      StackMap stack:
            new org.eclipse.core.runtime.Status
            dup
            iconst_4
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.getUniqueIdentifier:()Ljava/lang/String;
            sipush 150
            getstatic org.eclipse.jdt.internal.launching.LaunchingMessages.JREContainerInitializer_Classpath_entry__0__does_not_refer_to_an_existing_library__2:Ljava/lang/String;
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getPath:()Lorg/eclipse/core/runtime/IPath;
            invokeinterface org.eclipse.core.runtime.IPath.toString:()Ljava/lang/String;
            aastore
            invokestatic org.eclipse.osgi.util.NLS.bind:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            aconst_null
            invokespecial org.eclipse.core.runtime.Status.<init>:(ILjava/lang/String;ILjava/lang/String;Ljava/lang/Throwable;)V
            astore 11 /* status */
        start local 11 // org.eclipse.core.runtime.IStatus status
        45: .line 387
            new org.eclipse.core.runtime.CoreException
            dup
            aload 11 /* status */
            invokespecial org.eclipse.core.runtime.CoreException.<init>:(Lorg/eclipse/core/runtime/IStatus;)V
            athrow
        end local 11 // org.eclipse.core.runtime.IStatus status
        end local 10 // java.io.File lib
        end local 9 // org.eclipse.core.runtime.IPath path
        46: .line 390
      StackMap locals:
      StackMap stack:
            new org.eclipse.core.runtime.Status
            dup
            iconst_4
            invokestatic org.eclipse.jdt.internal.launching.LaunchingPlugin.getUniqueIdentifier:()Ljava/lang/String;
            sipush 150
            getstatic org.eclipse.jdt.internal.launching.LaunchingMessages.JREContainerInitializer_Classpath_entry__0__does_not_refer_to_a_library__3:Ljava/lang/String;
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            aload 8 /* entry */
            invokeinterface org.eclipse.jdt.core.IClasspathEntry.getPath:()Lorg/eclipse/core/runtime/IPath;
            invokeinterface org.eclipse.core.runtime.IPath.toString:()Ljava/lang/String;
            aastore
            invokestatic org.eclipse.osgi.util.NLS.bind:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            aconst_null
            invokespecial org.eclipse.core.runtime.Status.<init>:(ILjava/lang/String;ILjava/lang/String;Ljava/lang/Throwable;)V
            astore 9 /* status */
        start local 9 // org.eclipse.core.runtime.IStatus status
        47: .line 391
            new org.eclipse.core.runtime.CoreException
            dup
            aload 9 /* status */
            invokespecial org.eclipse.core.runtime.CoreException.<init>:(Lorg/eclipse/core/runtime/IStatus;)V
            athrow
        end local 9 // org.eclipse.core.runtime.IStatus status
        end local 8 // org.eclipse.jdt.core.IClasspathEntry entry
        48: .line 345
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        49: iload 7 /* i */
            aload 5 /* entries */
            arraylength
            if_icmplt 8
        end local 7 // int i
        50: .line 394
            new org.eclipse.jdt.launching.VMStandin
            dup
            aload 4 /* vm */
            invokespecial org.eclipse.jdt.launching.VMStandin.<init>:(Lorg/eclipse/jdt/launching/IVMInstall;)V
            astore 7 /* standin */
        start local 7 // org.eclipse.jdt.launching.VMStandin standin
        51: .line 395
            aload 7 /* standin */
            aload 6 /* libs */
            invokevirtual org.eclipse.jdt.launching.VMStandin.setLibraryLocations:([Lorg/eclipse/jdt/launching/LibraryLocation;)V
        52: .line 396
            aload 7 /* standin */
            invokevirtual org.eclipse.jdt.launching.VMStandin.convertToRealVM:()Lorg/eclipse/jdt/launching/IVMInstall;
            pop
        53: .line 397
            invokestatic org.eclipse.jdt.launching.JavaRuntime.saveVMConfiguration:()V
        54: .line 398
            return
        end local 7 // org.eclipse.jdt.launching.VMStandin standin
        end local 6 // org.eclipse.jdt.launching.LibraryLocation[] libs
        end local 5 // org.eclipse.jdt.core.IClasspathEntry[] entries
        end local 4 // org.eclipse.jdt.launching.IVMInstall vm
        end local 3 // org.eclipse.jdt.core.IClasspathContainer containerSuggestion
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   55     0                 this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0   55     1        containerPath  Lorg/eclipse/core/runtime/IPath;
            0   55     2              project  Lorg/eclipse/jdt/core/IJavaProject;
            0   55     3  containerSuggestion  Lorg/eclipse/jdt/core/IClasspathContainer;
            1   55     4                   vm  Lorg/eclipse/jdt/launching/IVMInstall;
            3    4     5               status  Lorg/eclipse/core/runtime/IStatus;
            5   55     5              entries  [Lorg/eclipse/jdt/core/IClasspathEntry;
            6   55     6                 libs  [Lorg/eclipse/jdt/launching/LibraryLocation;
            7   50     7                    i  I
            9   48     8                entry  Lorg/eclipse/jdt/core/IClasspathEntry;
           11   46     9                 path  Lorg/eclipse/core/runtime/IPath;
           12   46    10                  lib  Ljava/io/File;
           14   43    11              srcPath  Lorg/eclipse/core/runtime/IPath;
           17   43    12             rootPath  Lorg/eclipse/core/runtime/IPath;
           20   43    13      javadocLocation  Ljava/net/URL;
           21   43    14  externalAnnotations  Lorg/eclipse/core/runtime/IPath;
           22   43    15      extraAttributes  [Lorg/eclipse/jdt/core/IClasspathAttribute;
           23   42    16                    j  I
           25   40    17            attribute  Lorg/eclipse/jdt/core/IClasspathAttribute;
           27   32    18                  url  Ljava/lang/String;
           31   32    19                    e  Ljava/net/MalformedURLException;
           35   40    18                xpath  Ljava/lang/String;
           39   40    19                    x  Ljava/lang/Exception;
           45   46    11               status  Lorg/eclipse/core/runtime/IStatus;
           47   48     9               status  Lorg/eclipse/core/runtime/IStatus;
           51   55     7              standin  Lorg/eclipse/jdt/launching/VMStandin;
      Exception table:
        from    to  target  type
          28    29      30  Class java.net.MalformedURLException
          36    37      38  Class java.lang.Exception
    Exceptions:
      throws org.eclipse.core.runtime.CoreException
    MethodParameters:
                     Name  Flags
      containerPath        
      project              
      containerSuggestion  

  public java.lang.String getDescription(org.eclipse.core.runtime.IPath, org.eclipse.jdt.core.IJavaProject);
    descriptor: (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/jdt/core/IJavaProject;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
        start local 1 // org.eclipse.core.runtime.IPath containerPath
        start local 2 // org.eclipse.jdt.core.IJavaProject project
         0: .line 405
            aload 1 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getExecutionEnvironmentId:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            astore 3 /* tag */
        start local 3 // java.lang.String tag
         1: .line 406
            aload 3 /* tag */
            ifnonnull 3
            aload 1 /* containerPath */
            invokeinterface org.eclipse.core.runtime.IPath.segmentCount:()I
            iconst_2
            if_icmple 3
         2: .line 407
            aload 1 /* containerPath */
            invokestatic org.eclipse.jdt.internal.launching.JREContainerInitializer.getVMName:(Lorg/eclipse/core/runtime/IPath;)Ljava/lang/String;
            astore 3 /* tag */
         3: .line 409
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* tag */
            ifnull 5
         4: .line 410
            getstatic org.eclipse.jdt.internal.launching.LaunchingMessages.JREContainer_JRE_System_Library_1:Ljava/lang/String;
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            aload 3 /* tag */
            aastore
            invokestatic org.eclipse.osgi.util.NLS.bind:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
         5: .line 412
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jdt.internal.launching.LaunchingMessages.JREContainerInitializer_Default_System_Library_1:Ljava/lang/String;
            areturn
        end local 3 // java.lang.String tag
        end local 2 // org.eclipse.jdt.core.IJavaProject project
        end local 1 // org.eclipse.core.runtime.IPath containerPath
        end local 0 // org.eclipse.jdt.internal.launching.JREContainerInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/eclipse/jdt/internal/launching/JREContainerInitializer;
            0    6     1  containerPath  Lorg/eclipse/core/runtime/IPath;
            0    6     2        project  Lorg/eclipse/jdt/core/IJavaProject;
            1    6     3            tag  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      containerPath  
      project        
}
SourceFile: "JREContainerInitializer.java"