public class com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings implements com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings
  super_class: java.lang.Object
{
  protected static final java.lang.String PARSER_SETTINGS;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "http://apache.org/xml/features/internal/parser-settings"

  protected java.util.List<java.lang.String> fRecognizedProperties;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Ljava/lang/String;>;

  protected java.util.Map<java.lang.String, java.lang.Object> fProperties;
    descriptor: Ljava/util/Map;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  protected java.util.List<java.lang.String> fRecognizedFeatures;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Ljava/lang/String;>;

  protected java.util.Map<java.lang.String, java.lang.Boolean> fFeatures;
    descriptor: Ljava/util/Map;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Boolean;>;

  protected com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager fParentSettings;
    descriptor: Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
         0: .line 80
            aload 0 /* this */
            aconst_null
            invokespecial com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.<init>:(Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;)V
         1: .line 81
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;

  public void <init>(com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager);
    descriptor: (Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager parent
         0: .line 87
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 90
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedFeatures:Ljava/util/List;
         2: .line 91
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedProperties:Ljava/util/List;
         3: .line 94
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fFeatures:Ljava/util/Map;
         4: .line 95
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fProperties:Ljava/util/Map;
         5: .line 98
            aload 0 /* this */
            aload 1 /* parent */
            putfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fParentSettings:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
         6: .line 100
            return
        end local 1 // com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager parent
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    7     1  parent  Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
    MethodParameters:
        Name  Flags
      parent  

  public void addRecognizedFeatures(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String[] featureIds
         0: .line 116
            aload 1 /* featureIds */
            ifnull 1
            aload 1 /* featureIds */
            arraylength
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 2 /* featureIdsCount */
        start local 2 // int featureIdsCount
         3: .line 117
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 9
         5: .line 118
      StackMap locals: int int
      StackMap stack:
            aload 1 /* featureIds */
            iload 3 /* i */
            aaload
            astore 4 /* featureId */
        start local 4 // java.lang.String featureId
         6: .line 119
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedFeatures:Ljava/util/List;
            aload 4 /* featureId */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifne 8
         7: .line 120
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedFeatures:Ljava/util/List;
            aload 4 /* featureId */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // java.lang.String featureId
         8: .line 117
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 2 /* featureIdsCount */
            if_icmplt 5
        end local 3 // int i
        10: .line 124
            return
        end local 2 // int featureIdsCount
        end local 1 // java.lang.String[] featureIds
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   11     0             this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0   11     1       featureIds  [Ljava/lang/String;
            3   11     2  featureIdsCount  I
            4   10     3                i  I
            6    8     4        featureId  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      featureIds  

  public void setFeature(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String featureId
        start local 2 // boolean state
         0: .line 143
            aload 0 /* this */
            aload 1 /* featureId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.checkFeature:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            astore 3 /* checkState */
        start local 3 // com.sun.org.apache.xerces.internal.util.FeatureState checkState
         1: .line 144
            aload 3 /* checkState */
            invokevirtual com.sun.org.apache.xerces.internal.util.FeatureState.isExceptional:()Z
            ifeq 3
         2: .line 145
            new com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
            dup
            aload 3 /* checkState */
            getfield com.sun.org.apache.xerces.internal.util.FeatureState.status:Lcom/sun/org/apache/xerces/internal/util/Status;
            aload 1 /* featureId */
            invokespecial com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException.<init>:(Lcom/sun/org/apache/xerces/internal/util/Status;Ljava/lang/String;)V
            athrow
         3: .line 148
      StackMap locals: com.sun.org.apache.xerces.internal.util.FeatureState
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fFeatures:Ljava/util/Map;
            aload 1 /* featureId */
            iload 2 /* state */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 149
            return
        end local 3 // com.sun.org.apache.xerces.internal.util.FeatureState checkState
        end local 2 // boolean state
        end local 1 // java.lang.String featureId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    5     1   featureId  Ljava/lang/String;
            0    5     2       state  Z
            1    5     3  checkState  Lcom/sun/org/apache/xerces/internal/util/FeatureState;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
    MethodParameters:
           Name  Flags
      featureId  
      state      

  public void addRecognizedProperties(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String[] propertyIds
         0: .line 159
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedProperties:Ljava/util/List;
            aload 1 /* propertyIds */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         1: .line 160
            return
        end local 1 // java.lang.String[] propertyIds
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    2     1  propertyIds  [Ljava/lang/String;
    MethodParameters:
             Name  Flags
      propertyIds  

  public void setProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String propertyId
        start local 2 // java.lang.Object value
         0: .line 174
            aload 0 /* this */
            aload 1 /* propertyId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.checkProperty:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            astore 3 /* checkState */
        start local 3 // com.sun.org.apache.xerces.internal.util.PropertyState checkState
         1: .line 175
            aload 3 /* checkState */
            invokevirtual com.sun.org.apache.xerces.internal.util.PropertyState.isExceptional:()Z
            ifeq 3
         2: .line 176
            new com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
            dup
            aload 3 /* checkState */
            getfield com.sun.org.apache.xerces.internal.util.PropertyState.status:Lcom/sun/org/apache/xerces/internal/util/Status;
            aload 1 /* propertyId */
            invokespecial com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException.<init>:(Lcom/sun/org/apache/xerces/internal/util/Status;Ljava/lang/String;)V
            athrow
         3: .line 178
      StackMap locals: com.sun.org.apache.xerces.internal.util.PropertyState
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fProperties:Ljava/util/Map;
            aload 1 /* propertyId */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 180
            return
        end local 3 // com.sun.org.apache.xerces.internal.util.PropertyState checkState
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String propertyId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    5     1  propertyId  Ljava/lang/String;
            0    5     2       value  Ljava/lang/Object;
            1    5     3  checkState  Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
    MethodParameters:
            Name  Flags
      propertyId  
      value       

  public boolean getFeature(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String featureId
         0: .line 202
            aload 0 /* this */
            aload 1 /* featureId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.getFeatureState:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            astore 2 /* state */
        start local 2 // com.sun.org.apache.xerces.internal.util.FeatureState state
         1: .line 203
            aload 2 /* state */
            invokevirtual com.sun.org.apache.xerces.internal.util.FeatureState.isExceptional:()Z
            ifeq 3
         2: .line 204
            new com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
            dup
            aload 2 /* state */
            getfield com.sun.org.apache.xerces.internal.util.FeatureState.status:Lcom/sun/org/apache/xerces/internal/util/Status;
            aload 1 /* featureId */
            invokespecial com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException.<init>:(Lcom/sun/org/apache/xerces/internal/util/Status;Ljava/lang/String;)V
            athrow
         3: .line 206
      StackMap locals: com.sun.org.apache.xerces.internal.util.FeatureState
      StackMap stack:
            aload 2 /* state */
            getfield com.sun.org.apache.xerces.internal.util.FeatureState.state:Z
            ireturn
        end local 2 // com.sun.org.apache.xerces.internal.util.FeatureState state
        end local 1 // java.lang.String featureId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    4     1  featureId  Ljava/lang/String;
            1    4     2      state  Lcom/sun/org/apache/xerces/internal/util/FeatureState;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
    MethodParameters:
           Name  Flags
      featureId  

  public final boolean getFeature(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String featureId
        start local 2 // boolean defaultValue
         0: .line 211
            aload 0 /* this */
            aload 1 /* featureId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.getFeatureState:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            astore 3 /* state */
        start local 3 // com.sun.org.apache.xerces.internal.util.FeatureState state
         1: .line 212
            aload 3 /* state */
            invokevirtual com.sun.org.apache.xerces.internal.util.FeatureState.isExceptional:()Z
            ifeq 3
         2: .line 213
            iload 2 /* defaultValue */
            ireturn
         3: .line 215
      StackMap locals: com.sun.org.apache.xerces.internal.util.FeatureState
      StackMap stack:
            aload 3 /* state */
            getfield com.sun.org.apache.xerces.internal.util.FeatureState.state:Z
            ireturn
        end local 3 // com.sun.org.apache.xerces.internal.util.FeatureState state
        end local 2 // boolean defaultValue
        end local 1 // java.lang.String featureId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    4     1     featureId  Ljava/lang/String;
            0    4     2  defaultValue  Z
            1    4     3         state  Lcom/sun/org/apache/xerces/internal/util/FeatureState;
    MethodParameters:
              Name  Flags
      featureId     
      defaultValue  

  public com.sun.org.apache.xerces.internal.util.FeatureState getFeatureState(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String featureId
         0: .line 220
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fFeatures:Ljava/util/Map;
            aload 1 /* featureId */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 2 /* state */
        start local 2 // java.lang.Boolean state
         1: .line 222
            aload 2 /* state */
            ifnonnull 6
         2: .line 223
            aload 0 /* this */
            aload 1 /* featureId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.checkFeature:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            astore 3 /* checkState */
        start local 3 // com.sun.org.apache.xerces.internal.util.FeatureState checkState
         3: .line 224
            aload 3 /* checkState */
            invokevirtual com.sun.org.apache.xerces.internal.util.FeatureState.isExceptional:()Z
            ifeq 5
         4: .line 225
            aload 3 /* checkState */
            areturn
         5: .line 227
      StackMap locals: java.lang.Boolean com.sun.org.apache.xerces.internal.util.FeatureState
      StackMap stack:
            iconst_0
            invokestatic com.sun.org.apache.xerces.internal.util.FeatureState.is:(Z)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            areturn
        end local 3 // com.sun.org.apache.xerces.internal.util.FeatureState checkState
         6: .line 229
      StackMap locals:
      StackMap stack:
            aload 2 /* state */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokestatic com.sun.org.apache.xerces.internal.util.FeatureState.is:(Z)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            areturn
        end local 2 // java.lang.Boolean state
        end local 1 // java.lang.String featureId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    7     1   featureId  Ljava/lang/String;
            1    7     2       state  Ljava/lang/Boolean;
            3    6     3  checkState  Lcom/sun/org/apache/xerces/internal/util/FeatureState;
    MethodParameters:
           Name  Flags
      featureId  

  public java.lang.Object getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String propertyId
         0: .line 248
            aload 0 /* this */
            aload 1 /* propertyId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.getPropertyState:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            astore 2 /* state */
        start local 2 // com.sun.org.apache.xerces.internal.util.PropertyState state
         1: .line 249
            aload 2 /* state */
            invokevirtual com.sun.org.apache.xerces.internal.util.PropertyState.isExceptional:()Z
            ifeq 3
         2: .line 250
            new com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
            dup
            aload 2 /* state */
            getfield com.sun.org.apache.xerces.internal.util.PropertyState.status:Lcom/sun/org/apache/xerces/internal/util/Status;
            aload 1 /* propertyId */
            invokespecial com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException.<init>:(Lcom/sun/org/apache/xerces/internal/util/Status;Ljava/lang/String;)V
            athrow
         3: .line 253
      StackMap locals: com.sun.org.apache.xerces.internal.util.PropertyState
      StackMap stack:
            aload 2 /* state */
            getfield com.sun.org.apache.xerces.internal.util.PropertyState.state:Ljava/lang/Object;
            areturn
        end local 2 // com.sun.org.apache.xerces.internal.util.PropertyState state
        end local 1 // java.lang.String propertyId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    4     1  propertyId  Ljava/lang/String;
            1    4     2       state  Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
    MethodParameters:
            Name  Flags
      propertyId  

  public final java.lang.Object getProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String propertyId
        start local 2 // java.lang.Object defaultValue
         0: .line 258
            aload 0 /* this */
            aload 1 /* propertyId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.getPropertyState:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            astore 3 /* state */
        start local 3 // com.sun.org.apache.xerces.internal.util.PropertyState state
         1: .line 259
            aload 3 /* state */
            invokevirtual com.sun.org.apache.xerces.internal.util.PropertyState.isExceptional:()Z
            ifeq 3
         2: .line 260
            aload 2 /* defaultValue */
            areturn
         3: .line 263
      StackMap locals: com.sun.org.apache.xerces.internal.util.PropertyState
      StackMap stack:
            aload 3 /* state */
            getfield com.sun.org.apache.xerces.internal.util.PropertyState.state:Ljava/lang/Object;
            areturn
        end local 3 // com.sun.org.apache.xerces.internal.util.PropertyState state
        end local 2 // java.lang.Object defaultValue
        end local 1 // java.lang.String propertyId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    4     1    propertyId  Ljava/lang/String;
            0    4     2  defaultValue  Ljava/lang/Object;
            1    4     3         state  Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    MethodParameters:
              Name  Flags
      propertyId    
      defaultValue  

  public com.sun.org.apache.xerces.internal.util.PropertyState getPropertyState(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String propertyId
         0: .line 268
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fProperties:Ljava/util/Map;
            aload 1 /* propertyId */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* propertyValue */
        start local 2 // java.lang.Object propertyValue
         1: .line 270
            aload 2 /* propertyValue */
            ifnonnull 5
         2: .line 271
            aload 0 /* this */
            aload 1 /* propertyId */
            invokevirtual com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.checkProperty:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            astore 3 /* state */
        start local 3 // com.sun.org.apache.xerces.internal.util.PropertyState state
         3: .line 272
            aload 3 /* state */
            invokevirtual com.sun.org.apache.xerces.internal.util.PropertyState.isExceptional:()Z
            ifeq 5
         4: .line 273
            aload 3 /* state */
            areturn
        end local 3 // com.sun.org.apache.xerces.internal.util.PropertyState state
         5: .line 277
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* propertyValue */
            invokestatic com.sun.org.apache.xerces.internal.util.PropertyState.is:(Ljava/lang/Object;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            areturn
        end local 2 // java.lang.Object propertyValue
        end local 1 // java.lang.String propertyId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    6     1     propertyId  Ljava/lang/String;
            1    6     2  propertyValue  Ljava/lang/Object;
            3    5     3          state  Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    MethodParameters:
            Name  Flags
      propertyId  

  protected com.sun.org.apache.xerces.internal.util.FeatureState checkFeature(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String featureId
         0: .line 297
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedFeatures:Ljava/util/List;
            aload 1 /* featureId */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifne 4
         1: .line 298
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fParentSettings:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
            ifnull 3
         2: .line 299
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fParentSettings:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
            aload 1 /* featureId */
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager.getFeatureState:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            areturn
         3: .line 302
      StackMap locals:
      StackMap stack:
            getstatic com.sun.org.apache.xerces.internal.util.FeatureState.NOT_RECOGNIZED:Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            areturn
         4: .line 307
      StackMap locals:
      StackMap stack:
            getstatic com.sun.org.apache.xerces.internal.util.FeatureState.RECOGNIZED:Lcom/sun/org/apache/xerces/internal/util/FeatureState;
            areturn
        end local 1 // java.lang.String featureId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    5     1  featureId  Ljava/lang/String;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
    MethodParameters:
           Name  Flags
      featureId  

  protected com.sun.org.apache.xerces.internal.util.PropertyState checkProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
        start local 1 // java.lang.String propertyId
         0: .line 324
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fRecognizedProperties:Ljava/util/List;
            aload 1 /* propertyId */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifne 6
         1: .line 325
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fParentSettings:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
            ifnull 5
         2: .line 326
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings.fParentSettings:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager;
            aload 1 /* propertyId */
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLComponentManager.getPropertyState:(Ljava/lang/String;)Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            astore 2 /* state */
        start local 2 // com.sun.org.apache.xerces.internal.util.PropertyState state
         3: .line 327
            aload 2 /* state */
            invokevirtual com.sun.org.apache.xerces.internal.util.PropertyState.isExceptional:()Z
            ifeq 6
         4: .line 328
            aload 2 /* state */
            areturn
        end local 2 // com.sun.org.apache.xerces.internal.util.PropertyState state
         5: .line 332
      StackMap locals:
      StackMap stack:
            getstatic com.sun.org.apache.xerces.internal.util.PropertyState.NOT_RECOGNIZED:Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            areturn
         6: .line 335
      StackMap locals:
      StackMap stack:
            getstatic com.sun.org.apache.xerces.internal.util.PropertyState.RECOGNIZED:Lcom/sun/org/apache/xerces/internal/util/PropertyState;
            areturn
        end local 1 // java.lang.String propertyId
        end local 0 // com.sun.org.apache.xerces.internal.util.ParserConfigurationSettings this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/sun/org/apache/xerces/internal/util/ParserConfigurationSettings;
            0    7     1  propertyId  Ljava/lang/String;
            3    5     2       state  Lcom/sun/org/apache/xerces/internal/util/PropertyState;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException
    MethodParameters:
            Name  Flags
      propertyId  
}
SourceFile: "ParserConfigurationSettings.java"