public final class com.sun.tools.internal.xjc.SchemaCache
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.tools.internal.xjc.SchemaCache
  super_class: java.lang.Object
{
  private final boolean createResolver;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String resourceName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Class<?> clazz;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<*>;

  private javax.xml.validation.Schema schema;
    descriptor: Ljavax/xml/validation/Schema;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.lang.String, java.lang.Class<?>);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.sun.tools.internal.xjc.SchemaCache this
        start local 1 // java.lang.String resourceName
        start local 2 // java.lang.Class classToResolveResources
         0: .line 66
            aload 0 /* this */
            aload 1 /* resourceName */
            aload 2 /* classToResolveResources */
            iconst_0
            invokespecial com.sun.tools.internal.xjc.SchemaCache.<init>:(Ljava/lang/String;Ljava/lang/Class;Z)V
         1: .line 67
            return
        end local 2 // java.lang.Class classToResolveResources
        end local 1 // java.lang.String resourceName
        end local 0 // com.sun.tools.internal.xjc.SchemaCache this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lcom/sun/tools/internal/xjc/SchemaCache;
            0    2     1             resourceName  Ljava/lang/String;
            0    2     2  classToResolveResources  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/String;Ljava/lang/Class<*>;)V
    MethodParameters:
                         Name  Flags
      resourceName             
      classToResolveResources  

  public void <init>(java.lang.String, java.lang.Class<?>, );
    descriptor: (Ljava/lang/String;Ljava/lang/Class;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.sun.tools.internal.xjc.SchemaCache this
        start local 1 // java.lang.String resourceName
        start local 2 // java.lang.Class classToResolveResources
        start local 3 // boolean createResolver
         0: .line 69
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 70
            aload 0 /* this */
            aload 1 /* resourceName */
            putfield com.sun.tools.internal.xjc.SchemaCache.resourceName:Ljava/lang/String;
         2: .line 71
            aload 0 /* this */
            iload 3 /* createResolver */
            putfield com.sun.tools.internal.xjc.SchemaCache.createResolver:Z
         3: .line 72
            aload 0 /* this */
            aload 2 /* classToResolveResources */
            putfield com.sun.tools.internal.xjc.SchemaCache.clazz:Ljava/lang/Class;
         4: .line 73
            return
        end local 3 // boolean createResolver
        end local 2 // java.lang.Class classToResolveResources
        end local 1 // java.lang.String resourceName
        end local 0 // com.sun.tools.internal.xjc.SchemaCache this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    5     0                     this  Lcom/sun/tools/internal/xjc/SchemaCache;
            0    5     1             resourceName  Ljava/lang/String;
            0    5     2  classToResolveResources  Ljava/lang/Class<*>;
            0    5     3           createResolver  Z
    Signature: (Ljava/lang/String;Ljava/lang/Class<*>;Z)V
    MethodParameters:
                         Name  Flags
      resourceName             
      classToResolveResources  
      createResolver           

  public javax.xml.validation.ValidatorHandler newValidator();
    descriptor: ()Ljavax/xml/validation/ValidatorHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=1
        start local 0 // com.sun.tools.internal.xjc.SchemaCache this
         0: .line 76
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.schema:Ljavax/xml/validation/Schema;
            ifnonnull 32
         1: .line 77
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 78
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.schema:Ljavax/xml/validation/Schema;
            ifnonnull 28
         3: .line 80
            aconst_null
            astore 2 /* resourceResolver */
        start local 2 // com.sun.tools.internal.xjc.SchemaCache$ResourceResolver resourceResolver
         4: .line 81
            aconst_null
            astore 3
            aconst_null
            astore 4
         5: aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.clazz:Ljava/lang/Class;
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.resourceName:Ljava/lang/String;
            invokevirtual java.lang.Class.getResourceAsStream:(Ljava/lang/String;)Ljava/io/InputStream;
            astore 5 /* is */
        start local 5 // java.io.InputStream is
         6: .line 83
            new javax.xml.transform.stream.StreamSource
            dup
            aload 5 /* is */
            invokespecial javax.xml.transform.stream.StreamSource.<init>:(Ljava/io/InputStream;)V
            astore 6 /* source */
        start local 6 // javax.xml.transform.stream.StreamSource source
         7: .line 84
            aload 6 /* source */
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.resourceName:Ljava/lang/String;
            invokevirtual javax.xml.transform.stream.StreamSource.setSystemId:(Ljava/lang/String;)V
         8: .line 87
            ldc "http://www.w3.org/2001/XMLSchema"
            iconst_0
            invokestatic com.sun.xml.internal.bind.v2.util.XmlFactory.createSchemaFactory:(Ljava/lang/String;Z)Ljavax/xml/validation/SchemaFactory;
            astore 7 /* sf */
        start local 7 // javax.xml.validation.SchemaFactory sf
         9: .line 88
            aload 7 /* sf */
            ldc "file"
            iconst_0
            invokestatic com.sun.xml.internal.bind.v2.util.XmlFactory.allowExternalAccess:(Ljavax/xml/validation/SchemaFactory;Ljava/lang/String;Z)Ljavax/xml/validation/SchemaFactory;
            astore 8 /* schemaFactory */
        start local 8 // javax.xml.validation.SchemaFactory schemaFactory
        10: .line 90
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.createResolver:Z
            ifeq 13
        11: .line 91
            new com.sun.tools.internal.xjc.SchemaCache$ResourceResolver
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.clazz:Ljava/lang/Class;
            invokespecial com.sun.tools.internal.xjc.SchemaCache$ResourceResolver.<init>:(Lcom/sun/tools/internal/xjc/SchemaCache;Ljava/lang/Class;)V
            astore 2 /* resourceResolver */
        12: .line 92
            aload 8 /* schemaFactory */
            aload 2 /* resourceResolver */
            invokevirtual javax.xml.validation.SchemaFactory.setResourceResolver:(Lorg/w3c/dom/ls/LSResourceResolver;)V
        13: .line 94
      StackMap locals: com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache$ResourceResolver java.lang.Throwable java.lang.Throwable java.io.InputStream javax.xml.transform.stream.StreamSource javax.xml.validation.SchemaFactory javax.xml.validation.SchemaFactory
      StackMap stack:
            aload 0 /* this */
            aload 8 /* schemaFactory */
            aload 6 /* source */
            invokevirtual javax.xml.validation.SchemaFactory.newSchema:(Ljavax/xml/transform/Source;)Ljavax/xml/validation/Schema;
            putfield com.sun.tools.internal.xjc.SchemaCache.schema:Ljavax/xml/validation/Schema;
        end local 8 // javax.xml.validation.SchemaFactory schemaFactory
        end local 7 // javax.xml.validation.SchemaFactory sf
        end local 6 // javax.xml.transform.stream.StreamSource source
        14: .line 96
            aload 5 /* is */
            ifnull 27
            aload 5 /* is */
            invokevirtual java.io.InputStream.close:()V
            goto 27
      StackMap locals: com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache$ResourceResolver java.lang.Throwable java.lang.Throwable java.io.InputStream
      StackMap stack: java.lang.Throwable
        15: astore 3
            aload 5 /* is */
            ifnull 16
            aload 5 /* is */
            invokevirtual java.io.InputStream.close:()V
        end local 5 // java.io.InputStream is
      StackMap locals:
      StackMap stack:
        16: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: astore 4
            aload 3
            ifnonnull 18
            aload 4
            astore 3
            goto 19
      StackMap locals:
      StackMap stack:
        18: aload 3
            aload 4
            if_acmpeq 19
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        19: aload 3
            athrow
      StackMap locals: com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache$ResourceResolver
      StackMap stack: java.lang.Exception
        20: astore 3 /* e */
        start local 3 // java.lang.Exception e
        21: .line 97
            new java.lang.InternalError
            dup
            aload 3 /* e */
            invokevirtual java.lang.Exception.getMessage:()Ljava/lang/String;
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            astore 4 /* ie */
        start local 4 // java.lang.InternalError ie
        22: .line 98
            aload 4 /* ie */
            aload 3 /* e */
            invokevirtual java.lang.InternalError.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        23: .line 99
            aload 4 /* ie */
            athrow
        end local 4 // java.lang.InternalError ie
        end local 3 // java.lang.Exception e
        24: .line 100
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 9
        25: .line 101
            aload 2 /* resourceResolver */
            ifnull 26
            aload 2 /* resourceResolver */
            invokevirtual com.sun.tools.internal.xjc.SchemaCache$ResourceResolver.closeStreams:()V
        26: .line 102
      StackMap locals: com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache$ResourceResolver top top top top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        27: .line 101
      StackMap locals: com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache com.sun.tools.internal.xjc.SchemaCache$ResourceResolver
      StackMap stack:
            aload 2 /* resourceResolver */
            ifnull 28
            aload 2 /* resourceResolver */
            invokevirtual com.sun.tools.internal.xjc.SchemaCache$ResourceResolver.closeStreams:()V
        end local 2 // com.sun.tools.internal.xjc.SchemaCache$ResourceResolver resourceResolver
        28: .line 77
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
        29: goto 32
      StackMap locals:
      StackMap stack: java.lang.Throwable
        30: aload 1
            monitorexit
        31: athrow
        32: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.internal.xjc.SchemaCache.schema:Ljavax/xml/validation/Schema;
            invokevirtual javax.xml.validation.Schema.newValidatorHandler:()Ljavax/xml/validation/ValidatorHandler;
            areturn
        end local 0 // com.sun.tools.internal.xjc.SchemaCache this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   33     0              this  Lcom/sun/tools/internal/xjc/SchemaCache;
            4   28     2  resourceResolver  Lcom/sun/tools/internal/xjc/SchemaCache$ResourceResolver;
            6   16     5                is  Ljava/io/InputStream;
            7   14     6            source  Ljavax/xml/transform/stream/StreamSource;
            9   14     7                sf  Ljavax/xml/validation/SchemaFactory;
           10   14     8     schemaFactory  Ljavax/xml/validation/SchemaFactory;
           21   24     3                 e  Ljava/lang/Exception;
           22   24     4                ie  Ljava/lang/InternalError;
      Exception table:
        from    to  target  type
           6    14      15  any
           5    17      17  any
           4    20      20  Class java.io.IOException
           4    20      20  Class org.xml.sax.SAXException
           4    24      24  any
           2    29      30  any
          30    31      30  any
}
SourceFile: "SchemaCache.java"
NestMembers:
  com.sun.tools.internal.xjc.SchemaCache$ResourceResolver
InnerClasses:
  ResourceResolver = com.sun.tools.internal.xjc.SchemaCache$ResourceResolver of com.sun.tools.internal.xjc.SchemaCache