public class javax.xml.soap.SOAPElementFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.xml.soap.SOAPElementFactory
  super_class: java.lang.Object
{
  private javax.xml.soap.SOAPFactory soapFactory;
    descriptor: Ljavax/xml/soap/SOAPFactory;
    flags: (0x0002) ACC_PRIVATE

  private void <init>(javax.xml.soap.SOAPFactory);
    descriptor: (Ljavax/xml/soap/SOAPFactory;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.xml.soap.SOAPElementFactory this
        start local 1 // javax.xml.soap.SOAPFactory soapFactory
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            aload 1 /* soapFactory */
            putfield javax.xml.soap.SOAPElementFactory.soapFactory:Ljavax/xml/soap/SOAPFactory;
         2: .line 48
            return
        end local 1 // javax.xml.soap.SOAPFactory soapFactory
        end local 0 // javax.xml.soap.SOAPElementFactory this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Ljavax/xml/soap/SOAPElementFactory;
            0    3     1  soapFactory  Ljavax/xml/soap/SOAPFactory;
    MethodParameters:
             Name  Flags
      soapFactory  

  public javax.xml.soap.SOAPElement create(javax.xml.soap.Name);
    descriptor: (Ljavax/xml/soap/Name;)Ljavax/xml/soap/SOAPElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.xml.soap.SOAPElementFactory this
        start local 1 // javax.xml.soap.Name name
         0: .line 71
            aload 0 /* this */
            getfield javax.xml.soap.SOAPElementFactory.soapFactory:Ljavax/xml/soap/SOAPFactory;
            aload 1 /* name */
            invokevirtual javax.xml.soap.SOAPFactory.createElement:(Ljavax/xml/soap/Name;)Ljavax/xml/soap/SOAPElement;
            areturn
        end local 1 // javax.xml.soap.Name name
        end local 0 // javax.xml.soap.SOAPElementFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/xml/soap/SOAPElementFactory;
            0    1     1  name  Ljavax/xml/soap/Name;
    Exceptions:
      throws javax.xml.soap.SOAPException
    MethodParameters:
      Name  Flags
      name  

  public javax.xml.soap.SOAPElement create(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavax/xml/soap/SOAPElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.xml.soap.SOAPElementFactory this
        start local 1 // java.lang.String localName
         0: .line 93
            aload 0 /* this */
            getfield javax.xml.soap.SOAPElementFactory.soapFactory:Ljavax/xml/soap/SOAPFactory;
            aload 1 /* localName */
            invokevirtual javax.xml.soap.SOAPFactory.createElement:(Ljava/lang/String;)Ljavax/xml/soap/SOAPElement;
            areturn
        end local 1 // java.lang.String localName
        end local 0 // javax.xml.soap.SOAPElementFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Ljavax/xml/soap/SOAPElementFactory;
            0    1     1  localName  Ljava/lang/String;
    Exceptions:
      throws javax.xml.soap.SOAPException
    MethodParameters:
           Name  Flags
      localName  

  public javax.xml.soap.SOAPElement create(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljavax/xml/soap/SOAPElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.xml.soap.SOAPElementFactory this
        start local 1 // java.lang.String localName
        start local 2 // java.lang.String prefix
        start local 3 // java.lang.String uri
         0: .line 122
            aload 0 /* this */
            getfield javax.xml.soap.SOAPElementFactory.soapFactory:Ljavax/xml/soap/SOAPFactory;
            aload 1 /* localName */
            aload 2 /* prefix */
            aload 3 /* uri */
            invokevirtual javax.xml.soap.SOAPFactory.createElement:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljavax/xml/soap/SOAPElement;
            areturn
        end local 3 // java.lang.String uri
        end local 2 // java.lang.String prefix
        end local 1 // java.lang.String localName
        end local 0 // javax.xml.soap.SOAPElementFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Ljavax/xml/soap/SOAPElementFactory;
            0    1     1  localName  Ljava/lang/String;
            0    1     2     prefix  Ljava/lang/String;
            0    1     3        uri  Ljava/lang/String;
    Exceptions:
      throws javax.xml.soap.SOAPException
    MethodParameters:
           Name  Flags
      localName  
      prefix     
      uri        

  public static javax.xml.soap.SOAPElementFactory newInstance();
    descriptor: ()Ljavax/xml/soap/SOAPElementFactory;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=0
         0: .line 135
            new javax.xml.soap.SOAPElementFactory
            dup
            invokestatic javax.xml.soap.SOAPFactory.newInstance:()Ljavax/xml/soap/SOAPFactory;
            invokespecial javax.xml.soap.SOAPElementFactory.<init>:(Ljavax/xml/soap/SOAPFactory;)V
         1: areturn
         2: .line 136
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 0 /* ex */
        start local 0 // java.lang.Exception ex
         3: .line 137
            new javax.xml.soap.SOAPException
            dup
         4: .line 138
            new java.lang.StringBuilder
            dup
            ldc "Unable to create SOAP Element Factory: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* ex */
            invokevirtual java.lang.Exception.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 137
            invokespecial javax.xml.soap.SOAPException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // java.lang.Exception ex
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            3    6     0    ex  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
    Exceptions:
      throws javax.xml.soap.SOAPException
}
SourceFile: "SOAPElementFactory.java"