public class org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector implements org.apache.commons.beanutils.BeanIntrospector
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector
  super_class: java.lang.Object
{
  public static final org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector SUPPRESS_CLASS;
    descriptor: Lorg/apache/commons/beanutils/SuppressPropertiesBeanIntrospector;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final java.util.Set<java.lang.String> propertyNames;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 49
            new org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector
            dup
            ldc "class"
            invokestatic java.util.Collections.singleton:(Ljava/lang/Object;)Ljava/util/Set;
            invokespecial org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector.<init>:(Ljava/util/Collection;)V
         1: .line 48
            putstatic org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector.SUPPRESS_CLASS:Lorg/apache/commons/beanutils/SuppressPropertiesBeanIntrospector;
         2: .line 49
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.util.Collection<java.lang.String>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector this
        start local 1 // java.util.Collection propertiesToSuppress
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 1 /* propertiesToSuppress */
            ifnonnull 3
         2: .line 65
            new java.lang.IllegalArgumentException
            dup
            ldc "Property names must not be null!"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 68
      StackMap locals: org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector java.util.Collection
      StackMap stack:
            aload 0 /* this */
            new java.util.HashSet
            dup
         4: .line 69
            aload 1 /* propertiesToSuppress */
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
         5: .line 68
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            putfield org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector.propertyNames:Ljava/util/Set;
         6: .line 70
            return
        end local 1 // java.util.Collection propertiesToSuppress
        end local 0 // org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    7     0                  this  Lorg/apache/commons/beanutils/SuppressPropertiesBeanIntrospector;
            0    7     1  propertiesToSuppress  Ljava/util/Collection<Ljava/lang/String;>;
    Signature: (Ljava/util/Collection<Ljava/lang/String;>;)V
    MethodParameters:
                      Name  Flags
      propertiesToSuppress  final

  public java.util.Set<java.lang.String> getSuppressedProperties();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector this
         0: .line 79
            aload 0 /* this */
            getfield org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector.propertyNames:Ljava/util/Set;
            areturn
        end local 0 // org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/beanutils/SuppressPropertiesBeanIntrospector;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;

  public void introspect(org.apache.commons.beanutils.IntrospectionContext);
    descriptor: (Lorg/apache/commons/beanutils/IntrospectionContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector this
        start local 1 // org.apache.commons.beanutils.IntrospectionContext icontext
         0: .line 87
            aload 0 /* this */
            invokevirtual org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector.getSuppressedProperties:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector org.apache.commons.beanutils.IntrospectionContext top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* property */
        start local 2 // java.lang.String property
         2: .line 88
            aload 1 /* icontext */
            aload 2 /* property */
            invokeinterface org.apache.commons.beanutils.IntrospectionContext.removePropertyDescriptor:(Ljava/lang/String;)V
        end local 2 // java.lang.String property
         3: .line 87
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 90
            return
        end local 1 // org.apache.commons.beanutils.IntrospectionContext icontext
        end local 0 // org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/beanutils/SuppressPropertiesBeanIntrospector;
            0    5     1  icontext  Lorg/apache/commons/beanutils/IntrospectionContext;
            2    3     2  property  Ljava/lang/String;
    Exceptions:
      throws java.beans.IntrospectionException
    MethodParameters:
          Name  Flags
      icontext  final
}
SourceFile: "SuppressPropertiesBeanIntrospector.java"