Exemplo n.º 1
0
 /*
  * (non-Javadoc)
  * @see java.lang.Appendable#append(java.lang.CharSequence)
  */
 public Appendable append(StringValue csq) {
   append(csq, 0, csq.length());
   return this;
 }
Exemplo n.º 2
0
 /*
  * (non-Javadoc)
  * @see java.lang.Appendable#append(java.lang.CharSequence)
  */
 @Override
 public Appendable append(CharSequence csq) {
   append(csq, 0, csq.length());
   return this;
 }