示例#1
0
 /**
  * Add all tags to the end of the block4.
  *
  * @param tags to append
  * @return this object to allow method chaining
  * @since 7.6
  */
 @Override
 public MT291 append(final Tag... tags) {
   super.append(tags);
   return this;
 }
示例#2
0
 /**
  * Add all the fields to the end of the block4.
  *
  * @param fields to append
  * @return this object to allow method chaining
  * @since 7.6
  */
 @Override
 public MT291 append(final Field... fields) {
   super.append(fields);
   return this;
 }
示例#3
0
 /**
  * Add all tags from block to the end of the block4.
  *
  * @param block to append
  * @return this object to allow method chaining
  * @since 7.6
  */
 @Override
 public MT291 append(final SwiftTagListBlock block) {
   super.append(block);
   return this;
 }