public class com.sun.tools.internal.ws.processor.util.DirectoryUtil
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.internal.ws.processor.util.DirectoryUtil
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.internal.ws.processor.util.DirectoryUtil this
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.sun.tools.internal.ws.processor.util.DirectoryUtil this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/internal/ws/processor/util/DirectoryUtil;

  public static java.io.File getOutputDirectoryFor(java.lang.String, java.io.File);
    descriptor: (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // java.lang.String theClass
        start local 1 // java.io.File rootDir
         0: .line 43
            aconst_null
            astore 2 /* outputDir */
        start local 2 // java.io.File outputDir
         1: .line 44
            aload 0 /* theClass */
            astore 3 /* qualifiedClassName */
        start local 3 // java.lang.String qualifiedClassName
         2: .line 45
            aconst_null
            astore 4 /* packagePath */
        start local 4 // java.lang.String packagePath
         3: .line 46
            aload 3 /* qualifiedClassName */
            invokestatic com.sun.tools.internal.ws.util.ClassNameInfo.getQualifier:(Ljava/lang/String;)Ljava/lang/String;
            astore 5 /* packageName */
        start local 5 // java.lang.String packageName
         4: .line 47
            aload 5 /* packageName */
            ifnull 6
            aload 5 /* packageName */
            invokevirtual java.lang.String.length:()I
            ifle 6
         5: .line 48
            aload 5 /* packageName */
            bipush 46
            getstatic java.io.File.separatorChar:C
            invokevirtual java.lang.String.replace:(CC)Ljava/lang/String;
            astore 4 /* packagePath */
         6: .line 52
      StackMap locals: java.lang.String java.io.File java.io.File java.lang.String java.lang.String java.lang.String
      StackMap stack:
            aload 1 /* rootDir */
            ifnull 13
         7: .line 55
            aload 4 /* packagePath */
            ifnull 11
         8: .line 58
            new java.io.File
            dup
            aload 1 /* rootDir */
            aload 4 /* packagePath */
            invokespecial java.io.File.<init>:(Ljava/io/File;Ljava/lang/String;)V
            astore 2 /* outputDir */
         9: .line 61
            aload 2 /* outputDir */
            invokestatic com.sun.tools.internal.ws.processor.util.DirectoryUtil.ensureDirectory:(Ljava/io/File;)V
        10: .line 62
            goto 20
        11: .line 65
      StackMap locals:
      StackMap stack:
            aload 1 /* rootDir */
            astore 2 /* outputDir */
        12: .line 67
            goto 20
        13: .line 70
      StackMap locals:
      StackMap stack:
            ldc "user.dir"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 6 /* workingDirPath */
        start local 6 // java.lang.String workingDirPath
        14: .line 71
            new java.io.File
            dup
            aload 6 /* workingDirPath */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            astore 7 /* workingDir */
        start local 7 // java.io.File workingDir
        15: .line 74
            aload 4 /* packagePath */
            ifnonnull 18
        16: .line 77
            aload 7 /* workingDir */
            astore 2 /* outputDir */
        17: .line 78
            goto 20
        18: .line 81
      StackMap locals: java.lang.String java.io.File
      StackMap stack:
            new java.io.File
            dup
            aload 7 /* workingDir */
            aload 4 /* packagePath */
            invokespecial java.io.File.<init>:(Ljava/io/File;Ljava/lang/String;)V
            astore 2 /* outputDir */
        19: .line 84
            aload 2 /* outputDir */
            invokestatic com.sun.tools.internal.ws.processor.util.DirectoryUtil.ensureDirectory:(Ljava/io/File;)V
        end local 7 // java.io.File workingDir
        end local 6 // java.lang.String workingDirPath
        20: .line 89
      StackMap locals:
      StackMap stack:
            aload 2 /* outputDir */
            areturn
        end local 5 // java.lang.String packageName
        end local 4 // java.lang.String packagePath
        end local 3 // java.lang.String qualifiedClassName
        end local 2 // java.io.File outputDir
        end local 1 // java.io.File rootDir
        end local 0 // java.lang.String theClass
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   21     0            theClass  Ljava/lang/String;
            0   21     1             rootDir  Ljava/io/File;
            1   21     2           outputDir  Ljava/io/File;
            2   21     3  qualifiedClassName  Ljava/lang/String;
            3   21     4         packagePath  Ljava/lang/String;
            4   21     5         packageName  Ljava/lang/String;
           14   20     6      workingDirPath  Ljava/lang/String;
           15   20     7          workingDir  Ljava/io/File;
    Exceptions:
      throws com.sun.tools.internal.ws.processor.generator.GeneratorException
    MethodParameters:
          Name  Flags
      theClass  
      rootDir   

  public static java.lang.String getRelativePathfromCommonBase(java.io.File, java.io.File);
    descriptor: (Ljava/io/File;Ljava/io/File;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.io.File file
        start local 1 // java.io.File base
         0: .line 93
            aload 1 /* base */
            invokevirtual java.io.File.getCanonicalPath:()Ljava/lang/String;
            astore 2 /* basePath */
        start local 2 // java.lang.String basePath
         1: .line 94
            aload 0 /* file */
            invokevirtual java.io.File.getCanonicalPath:()Ljava/lang/String;
            astore 3 /* filePath */
        start local 3 // java.lang.String filePath
         2: .line 95
            aload 3 /* filePath */
            aload 2 /* basePath */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            areturn
        end local 3 // java.lang.String filePath
        end local 2 // java.lang.String basePath
        end local 1 // java.io.File base
        end local 0 // java.io.File file
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      file  Ljava/io/File;
            0    3     1      base  Ljava/io/File;
            1    3     2  basePath  Ljava/lang/String;
            2    3     3  filePath  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      file  
      base  

  private static void ensureDirectory(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // java.io.File dir
         0: .line 100
            aload 0 /* dir */
            invokevirtual java.io.File.exists:()Z
            ifne 6
         1: .line 101
            aload 0 /* dir */
            invokevirtual java.io.File.mkdirs:()Z
            istore 1 /* created */
        start local 1 // boolean created
         2: .line 102
            iload 1 /* created */
            ifeq 3
            aload 0 /* dir */
            invokevirtual java.io.File.exists:()Z
            ifne 6
         3: .line 103
      StackMap locals: int
      StackMap stack:
            new com.sun.tools.internal.ws.processor.generator.GeneratorException
            dup
            ldc "generator.cannot.create.dir"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 104
            aload 0 /* dir */
            invokevirtual java.io.File.getAbsolutePath:()Ljava/lang/String;
         5: .line 103
            aastore
            invokespecial com.sun.tools.internal.ws.processor.generator.GeneratorException.<init>:(Ljava/lang/String;[Ljava/lang/Object;)V
            athrow
        end local 1 // boolean created
         6: .line 107
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.File dir
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0      dir  Ljava/io/File;
            2    6     1  created  Z
    Exceptions:
      throws com.sun.tools.internal.ws.processor.generator.GeneratorException
    MethodParameters:
      Name  Flags
      dir   
}
SourceFile: "DirectoryUtil.java"