Exemplo n.º 1
0
 /**
  * Append the <code>toString</code> from the superclass.
  *
  * <p>This method assumes that the superclass uses the same <code>ToStringStyle</code> as this
  * one.
  *
  * <p>If <code>superToString</code> is <code>null</code>, no change is made.
  *
  * @param superToString the result of <code>super.toString()</code>
  * @return this
  * @since 2.0
  */
 public ToStringBuilder appendSuper(String superToString) {
   if (superToString != null) {
     style.appendSuper(buffer, superToString);
   }
   return this;
 }
 public ToStringBuilder appendSuper(String paramString) {
   if (paramString != null) {
     style.appendSuper(buffer, paramString);
   }
   return this;
 }