public abstract class com.ctc.wstx.msv.BaseSchemaFactory extends org.codehaus.stax2.validation.XMLValidationSchemaFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.ctc.wstx.msv.BaseSchemaFactory
  super_class: org.codehaus.stax2.validation.XMLValidationSchemaFactory
{
  protected static javax.xml.parsers.SAXParserFactory sSaxFactory;
    descriptor: Ljavax/xml/parsers/SAXParserFactory;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC

  protected final com.ctc.wstx.api.ValidatorConfig mConfig;
    descriptor: Lcom/ctc/wstx/api/ValidatorConfig;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.lang.String schemaType
         0: .line 47
            aload 0 /* this */
            aload 1 /* schemaType */
            invokespecial org.codehaus.stax2.validation.XMLValidationSchemaFactory.<init>:(Ljava/lang/String;)V
         1: .line 48
            aload 0 /* this */
            invokestatic com.ctc.wstx.api.ValidatorConfig.createDefaults:()Lcom/ctc/wstx/api/ValidatorConfig;
            putfield com.ctc.wstx.msv.BaseSchemaFactory.mConfig:Lcom/ctc/wstx/api/ValidatorConfig;
         2: .line 49
            return
        end local 1 // java.lang.String schemaType
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    3     1  schemaType  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      schemaType  

  public boolean isPropertySupported(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.lang.String propName
         0: .line 59
            aload 0 /* this */
            getfield com.ctc.wstx.msv.BaseSchemaFactory.mConfig:Lcom/ctc/wstx/api/ValidatorConfig;
            aload 1 /* propName */
            invokevirtual com.ctc.wstx.api.ValidatorConfig.isPropertySupported:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String propName
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    1     1  propName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      propName  

  public boolean setProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.lang.String propName
        start local 2 // java.lang.Object value
         0: .line 64
            aload 0 /* this */
            getfield com.ctc.wstx.msv.BaseSchemaFactory.mConfig:Lcom/ctc/wstx/api/ValidatorConfig;
            aload 1 /* propName */
            aload 2 /* value */
            invokevirtual com.ctc.wstx.api.ValidatorConfig.setProperty:(Ljava/lang/String;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String propName
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    1     1  propName  Ljava/lang/String;
            0    1     2     value  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      propName  
      value     

  public java.lang.Object getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.lang.String propName
         0: .line 69
            aload 0 /* this */
            getfield com.ctc.wstx.msv.BaseSchemaFactory.mConfig:Lcom/ctc/wstx/api/ValidatorConfig;
            aload 1 /* propName */
            invokevirtual com.ctc.wstx.api.ValidatorConfig.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String propName
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    1     1  propName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      propName  

  public org.codehaus.stax2.validation.XMLValidationSchema createSchema(java.io.InputStream, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/io/InputStream;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.io.InputStream in
        start local 2 // java.lang.String encoding
        start local 3 // java.lang.String publicId
        start local 4 // java.lang.String systemId
         0: .line 83
            new org.xml.sax.InputSource
            dup
            aload 1 /* in */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/InputStream;)V
            astore 5 /* src */
        start local 5 // org.xml.sax.InputSource src
         1: .line 84
            aload 5 /* src */
            aload 2 /* encoding */
            invokevirtual org.xml.sax.InputSource.setEncoding:(Ljava/lang/String;)V
         2: .line 85
            aload 5 /* src */
            aload 3 /* publicId */
            invokevirtual org.xml.sax.InputSource.setPublicId:(Ljava/lang/String;)V
         3: .line 86
            aload 5 /* src */
            aload 4 /* systemId */
            invokevirtual org.xml.sax.InputSource.setSystemId:(Ljava/lang/String;)V
         4: .line 87
            aload 0 /* this */
            aload 5 /* src */
            aload 4 /* systemId */
            invokevirtual com.ctc.wstx.msv.BaseSchemaFactory.loadSchema:(Lorg/xml/sax/InputSource;Ljava/lang/Object;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
            areturn
        end local 5 // org.xml.sax.InputSource src
        end local 4 // java.lang.String systemId
        end local 3 // java.lang.String publicId
        end local 2 // java.lang.String encoding
        end local 1 // java.io.InputStream in
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    5     1        in  Ljava/io/InputStream;
            0    5     2  encoding  Ljava/lang/String;
            0    5     3  publicId  Ljava/lang/String;
            0    5     4  systemId  Ljava/lang/String;
            1    5     5       src  Lorg/xml/sax/InputSource;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
          Name  Flags
      in        
      encoding  
      publicId  
      systemId  

  public org.codehaus.stax2.validation.XMLValidationSchema createSchema(java.io.Reader, java.lang.String, java.lang.String);
    descriptor: (Ljava/io/Reader;Ljava/lang/String;Ljava/lang/String;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.io.Reader r
        start local 2 // java.lang.String publicId
        start local 3 // java.lang.String systemId
         0: .line 95
            new org.xml.sax.InputSource
            dup
            aload 1 /* r */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/Reader;)V
            astore 4 /* src */
        start local 4 // org.xml.sax.InputSource src
         1: .line 96
            aload 4 /* src */
            aload 2 /* publicId */
            invokevirtual org.xml.sax.InputSource.setPublicId:(Ljava/lang/String;)V
         2: .line 97
            aload 4 /* src */
            aload 3 /* systemId */
            invokevirtual org.xml.sax.InputSource.setSystemId:(Ljava/lang/String;)V
         3: .line 98
            aload 0 /* this */
            aload 4 /* src */
            aload 3 /* systemId */
            invokevirtual com.ctc.wstx.msv.BaseSchemaFactory.loadSchema:(Lorg/xml/sax/InputSource;Ljava/lang/Object;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
            areturn
        end local 4 // org.xml.sax.InputSource src
        end local 3 // java.lang.String systemId
        end local 2 // java.lang.String publicId
        end local 1 // java.io.Reader r
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    4     1         r  Ljava/io/Reader;
            0    4     2  publicId  Ljava/lang/String;
            0    4     3  systemId  Ljava/lang/String;
            1    4     4       src  Lorg/xml/sax/InputSource;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
          Name  Flags
      r         
      publicId  
      systemId  

  public org.codehaus.stax2.validation.XMLValidationSchema createSchema(java.net.URL);
    descriptor: (Ljava/net/URL;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.net.URL url
         0: .line 107
            aload 1 /* url */
            invokestatic com.ctc.wstx.util.URLUtil.inputStreamFromURL:(Ljava/net/URL;)Ljava/io/InputStream;
            astore 2 /* in */
        start local 2 // java.io.InputStream in
         1: .line 108
            new org.xml.sax.InputSource
            dup
            aload 2 /* in */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/io/InputStream;)V
            astore 3 /* src */
        start local 3 // org.xml.sax.InputSource src
         2: .line 109
            aload 3 /* src */
            aload 1 /* url */
            invokevirtual java.net.URL.toExternalForm:()Ljava/lang/String;
            invokevirtual org.xml.sax.InputSource.setSystemId:(Ljava/lang/String;)V
         3: .line 110
            aload 0 /* this */
            aload 3 /* src */
            aload 1 /* url */
            invokevirtual com.ctc.wstx.msv.BaseSchemaFactory.loadSchema:(Lorg/xml/sax/InputSource;Ljava/lang/Object;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
         4: areturn
        end local 3 // org.xml.sax.InputSource src
        end local 2 // java.io.InputStream in
         5: .line 111
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         6: .line 112
            new com.ctc.wstx.exc.WstxIOException
            dup
            aload 2 /* ioe */
            invokespecial com.ctc.wstx.exc.WstxIOException.<init>:(Ljava/io/IOException;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.net.URL url
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    7     1   url  Ljava/net/URL;
            1    5     2    in  Ljava/io/InputStream;
            2    5     3   src  Lorg/xml/sax/InputSource;
            6    7     2   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     4       5  Class java.io.IOException
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      url   

  public org.codehaus.stax2.validation.XMLValidationSchema createSchema(java.io.File);
    descriptor: (Ljava/io/File;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
        start local 1 // java.io.File f
         0: .line 122
            aload 0 /* this */
            aload 1 /* f */
            invokevirtual java.io.File.toURL:()Ljava/net/URL;
            invokevirtual com.ctc.wstx.msv.BaseSchemaFactory.createSchema:(Ljava/net/URL;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
         1: areturn
         2: .line 123
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         3: .line 124
            new com.ctc.wstx.exc.WstxIOException
            dup
            aload 2 /* ioe */
            invokespecial com.ctc.wstx.exc.WstxIOException.<init>:(Ljava/io/IOException;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.io.File f
        end local 0 // com.ctc.wstx.msv.BaseSchemaFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/ctc/wstx/msv/BaseSchemaFactory;
            0    4     1     f  Ljava/io/File;
            3    4     2   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      f     

  protected abstract org.codehaus.stax2.validation.XMLValidationSchema loadSchema(org.xml.sax.InputSource, java.lang.Object);
    descriptor: (Lorg/xml/sax/InputSource;Ljava/lang/Object;)Lorg/codehaus/stax2/validation/XMLValidationSchema;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
        Name  Flags
      src     
      sysRef  

  protected static synchronized javax.xml.parsers.SAXParserFactory getSaxFactory();
    descriptor: ()Ljavax/xml/parsers/SAXParserFactory;
    flags: (0x002c) ACC_PROTECTED, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=0, args_size=0
         0: .line 150
            getstatic com.ctc.wstx.msv.BaseSchemaFactory.sSaxFactory:Ljavax/xml/parsers/SAXParserFactory;
            ifnonnull 3
         1: .line 151
            invokestatic javax.xml.parsers.SAXParserFactory.newInstance:()Ljavax/xml/parsers/SAXParserFactory;
            putstatic com.ctc.wstx.msv.BaseSchemaFactory.sSaxFactory:Ljavax/xml/parsers/SAXParserFactory;
         2: .line 152
            getstatic com.ctc.wstx.msv.BaseSchemaFactory.sSaxFactory:Ljavax/xml/parsers/SAXParserFactory;
            iconst_1
            invokevirtual javax.xml.parsers.SAXParserFactory.setNamespaceAware:(Z)V
         3: .line 154
      StackMap locals:
      StackMap stack:
            getstatic com.ctc.wstx.msv.BaseSchemaFactory.sSaxFactory:Ljavax/xml/parsers/SAXParserFactory;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BaseSchemaFactory.java"
NestMembers:
  com.ctc.wstx.msv.BaseSchemaFactory$MyGrammarController
InnerClasses:
  final MyGrammarController = com.ctc.wstx.msv.BaseSchemaFactory$MyGrammarController of com.ctc.wstx.msv.BaseSchemaFactory