client/src/main/java/org/apache/qpid/framing/ConnectionCloseBody.java [108:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString()
    {
        StringBuilder buf = new StringBuilder("[ConnectionCloseBodyImpl: ");
        buf.append( "replyCode=" );
        buf.append(  getReplyCode() );
        buf.append( ", " );
        buf.append( "replyText=" );
        buf.append(  getReplyText() );
        buf.append( ", " );
        buf.append( "classId=" );
        buf.append(  getClassId() );
        buf.append( ", " );
        buf.append( "methodId=" );
        buf.append(  getMethodId() );
        buf.append("]");
        return buf.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



client/src/main/java/org/apache/qpid/framing/ChannelCloseBody.java [107:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString()
    {
        StringBuilder buf = new StringBuilder("[ChannelCloseBodyImpl: ");
        buf.append( "replyCode=" );
        buf.append(  getReplyCode() );
        buf.append( ", " );
        buf.append( "replyText=" );
        buf.append(  getReplyText() );
        buf.append( ", " );
        buf.append( "classId=" );
        buf.append(  getClassId() );
        buf.append( ", " );
        buf.append( "methodId=" );
        buf.append(  getMethodId() );
        buf.append("]");
        return buf.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



