示例#1
0
 /*
  * (non-Javadoc)
  * @see java.lang.Appendable#append(java.lang.CharSequence)
  */
 public Appendable append(StringValue csq) {
   append(csq, 0, csq.length());
   return this;
 }
示例#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;
 }