public class org.eclipse.jetty.http.HostPortHttpField extends org.eclipse.jetty.http.HttpField
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.http.HostPortHttpField
  super_class: org.eclipse.jetty.http.HttpField
{
  final org.eclipse.jetty.util.HostPort _hostPort;
    descriptor: Lorg/eclipse/jetty/util/HostPort;
    flags: (0x0010) ACC_FINAL

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
        start local 1 // java.lang.String authority
         0: .line 34
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.HttpHeader.HOST:Lorg/eclipse/jetty/http/HttpHeader;
            getstatic org.eclipse.jetty.http.HttpHeader.HOST:Lorg/eclipse/jetty/http/HttpHeader;
            invokevirtual org.eclipse.jetty.http.HttpHeader.asString:()Ljava/lang/String;
            aload 1 /* authority */
            invokespecial org.eclipse.jetty.http.HostPortHttpField.<init>:(Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 35
            return
        end local 1 // java.lang.String authority
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/jetty/http/HostPortHttpField;
            0    2     1  authority  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      authority  

  protected void <init>(org.eclipse.jetty.http.HttpHeader, java.lang.String, java.lang.String);
    descriptor: (Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
        start local 1 // org.eclipse.jetty.http.HttpHeader header
        start local 2 // java.lang.String name
        start local 3 // java.lang.String authority
         0: .line 39
            aload 0 /* this */
            aload 1 /* header */
            aload 2 /* name */
            aload 3 /* authority */
            invokespecial org.eclipse.jetty.http.HttpField.<init>:(Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 42
            aload 0 /* this */
            new org.eclipse.jetty.util.HostPort
            dup
            aload 3 /* authority */
            invokespecial org.eclipse.jetty.util.HostPort.<init>:(Ljava/lang/String;)V
            putfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
         2: .line 43
            goto 5
         3: .line 44
      StackMap locals: org.eclipse.jetty.http.HostPortHttpField org.eclipse.jetty.http.HttpHeader java.lang.String java.lang.String
      StackMap stack: java.lang.Exception
            astore 4 /* e */
        start local 4 // java.lang.Exception e
         4: .line 46
            new org.eclipse.jetty.http.BadMessageException
            dup
            sipush 400
            ldc "Bad HostPort"
            aload 4 /* e */
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.Exception e
         5: .line 48
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String authority
        end local 2 // java.lang.String name
        end local 1 // org.eclipse.jetty.http.HttpHeader header
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/eclipse/jetty/http/HostPortHttpField;
            0    6     1     header  Lorg/eclipse/jetty/http/HttpHeader;
            0    6     2       name  Ljava/lang/String;
            0    6     3  authority  Ljava/lang/String;
            4    5     4          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception
    MethodParameters:
           Name  Flags
      header     
      name       
      authority  

  public void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
        start local 1 // java.lang.String host
        start local 2 // int port
         0: .line 52
            aload 0 /* this */
            new org.eclipse.jetty.util.HostPort
            dup
            aload 1 /* host */
            iload 2 /* port */
            invokespecial org.eclipse.jetty.util.HostPort.<init>:(Ljava/lang/String;I)V
            invokespecial org.eclipse.jetty.http.HostPortHttpField.<init>:(Lorg/eclipse/jetty/util/HostPort;)V
         1: .line 53
            return
        end local 2 // int port
        end local 1 // java.lang.String host
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/http/HostPortHttpField;
            0    2     1  host  Ljava/lang/String;
            0    2     2  port  I
    MethodParameters:
      Name  Flags
      host  
      port  

  public void <init>(org.eclipse.jetty.util.HostPort);
    descriptor: (Lorg/eclipse/jetty/util/HostPort;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
        start local 1 // org.eclipse.jetty.util.HostPort hostport
         0: .line 57
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.HttpHeader.HOST:Lorg/eclipse/jetty/http/HttpHeader;
            getstatic org.eclipse.jetty.http.HttpHeader.HOST:Lorg/eclipse/jetty/http/HttpHeader;
            invokevirtual org.eclipse.jetty.http.HttpHeader.asString:()Ljava/lang/String;
            aload 1 /* hostport */
            invokevirtual org.eclipse.jetty.util.HostPort.toString:()Ljava/lang/String;
            invokespecial org.eclipse.jetty.http.HttpField.<init>:(Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 58
            aload 0 /* this */
            aload 1 /* hostport */
            putfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
         2: .line 59
            return
        end local 1 // org.eclipse.jetty.util.HostPort hostport
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jetty/http/HostPortHttpField;
            0    3     1  hostport  Lorg/eclipse/jetty/util/HostPort;
    MethodParameters:
          Name  Flags
      hostport  

  public void <init>(org.eclipse.jetty.http.HttpHeader, java.lang.String, org.eclipse.jetty.util.HostPort);
    descriptor: (Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Lorg/eclipse/jetty/util/HostPort;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
        start local 1 // org.eclipse.jetty.http.HttpHeader header
        start local 2 // java.lang.String headerString
        start local 3 // org.eclipse.jetty.util.HostPort hostport
         0: .line 63
            aload 0 /* this */
            aload 1 /* header */
            aload 2 /* headerString */
            aload 3 /* hostport */
            invokevirtual org.eclipse.jetty.util.HostPort.toString:()Ljava/lang/String;
            invokespecial org.eclipse.jetty.http.HttpField.<init>:(Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 64
            aload 0 /* this */
            aload 3 /* hostport */
            putfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
         2: .line 65
            return
        end local 3 // org.eclipse.jetty.util.HostPort hostport
        end local 2 // java.lang.String headerString
        end local 1 // org.eclipse.jetty.http.HttpHeader header
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/jetty/http/HostPortHttpField;
            0    3     1        header  Lorg/eclipse/jetty/http/HttpHeader;
            0    3     2  headerString  Ljava/lang/String;
            0    3     3      hostport  Lorg/eclipse/jetty/util/HostPort;
    MethodParameters:
              Name  Flags
      header        
      headerString  
      hostport      

  public java.lang.String getHost();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
         0: .line 74
            aload 0 /* this */
            getfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
            invokevirtual org.eclipse.jetty.util.HostPort.getHost:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/HostPortHttpField;

  public int getPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
         0: .line 84
            aload 0 /* this */
            getfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
            invokevirtual org.eclipse.jetty.util.HostPort.getPort:()I
            ireturn
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/HostPortHttpField;

  public int getPort(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
        start local 1 // int defaultPort
         0: .line 95
            aload 0 /* this */
            getfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
            iload 1 /* defaultPort */
            invokevirtual org.eclipse.jetty.util.HostPort.getPort:(I)I
            ireturn
        end local 1 // int defaultPort
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/jetty/http/HostPortHttpField;
            0    1     1  defaultPort  I
    MethodParameters:
             Name  Flags
      defaultPort  

  public org.eclipse.jetty.util.HostPort getHostPort();
    descriptor: ()Lorg/eclipse/jetty/util/HostPort;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.HostPortHttpField this
         0: .line 100
            aload 0 /* this */
            getfield org.eclipse.jetty.http.HostPortHttpField._hostPort:Lorg/eclipse/jetty/util/HostPort;
            areturn
        end local 0 // org.eclipse.jetty.http.HostPortHttpField this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/HostPortHttpField;
}
SourceFile: "HostPortHttpField.java"