Ejemplo n.º 1
0
 /**
  * Adds <code>String</code> with elements to the segment. The elements are added at the end of the
  * elements in the current segment. e.g. <code>addElements("ISA*ISA01*ISA02");</code>
  *
  * @param s elements to be split by the element separator
  * @return boolean if all were added
  */
 public boolean addElements(final String s) {
   return addElements(StringHelper.getExploded(m_aContext.getElementSeparator(), s));
 }