uimaj-core/src/main/java/org/apache/uima/internal/util/TextStringTokenizer.java [154:246]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      eosDels = makeSortedList(chars);
    }
  }

  /**
   * Add to the set of sentence delimiters.
   * 
   * @param chars
   *          A string containing EOS chars.
   */
  public void addToEndOfSentenceChars(String chars) {
    if (chars == null) {
      return;
    }
    eosDels = addToSortedList(chars, eosDels);
  }

  /**
   * Set the set of separator characters.
   * 
   * @param chars
   *          The separator chars.
   */
  public void setSeparators(String chars) {
    if (chars == null) {
      chars = "";
    }
    separators = makeSortedList(chars);
  }

  /**
   * Add to the set of separator characters.
   * 
   * @param chars
   *          Separator chars.
   */
  public void addSeparators(String chars) {
    if (chars == null) {
      return;
    }
    separators = addToSortedList(chars, separators);
  }

  /**
   * Set the set of whitespace characters (in addition to the Unicode whitespace chars).
   * 
   * @param chars
   *          Whitespace chars.
   */
  public void setWhitespaceChars(String chars) {
    if (chars == null) {
      chars = "";
    }
    whitespace = makeSortedList(chars);
  }

  /**
   * Add to the set of whitespace characters.
   * 
   * @param chars
   *          Whitespace chars.
   */
  public void addWhitespaceChars(String chars) {
    if (chars == null) {
      return;
    }
    whitespace = addToSortedList(chars, whitespace);
  }

  /**
   * Set the set of word characters.
   * 
   * @param chars
   *          Word chars.
   */
  public void setWordChars(String chars) {
    if (chars == null) {
      chars = "";
    }
    wordChars = makeSortedList(chars);
  }

  /**
   * Add to the set of word characters.
   * 
   * @param chars
   *          Word chars.
   */
  public void addWordChars(String chars) {
    if (chars == null) {
      return;
    }
    wordChars = addToSortedList(chars, wordChars);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimaj-core/src/main/java/org/apache/uima/internal/util/TextTokenizer.java [163:254]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    eosDels = makeSortedList(chars);
  }

  /**
   * Add to the set of sentence delimiters.
   * 
   * @param chars
   *          -
   */
  public void addToEndOfSentenceChars(String chars) {
    if (chars == null) {
      return;
    }
    eosDels = addToSortedList(chars, eosDels);
  }

  /**
   * Set the set of separator characters.
   * 
   * @param chars
   *          -
   */
  public void setSeparators(String chars) {
    if (chars == null) {
      chars = "";
    }
    separators = makeSortedList(chars);
  }

  /**
   * Add to the set of separator characters.
   * 
   * @param chars
   *          -
   */
  public void addSeparators(String chars) {
    if (chars == null) {
      return;
    }
    separators = addToSortedList(chars, separators);
  }

  /**
   * Set the set of whitespace characters (in addition to the Unicode whitespace chars).
   * 
   * @param chars
   *          -
   */
  public void setWhitespaceChars(String chars) {
    if (chars == null) {
      chars = "";
    }
    whitespace = makeSortedList(chars);
  }

  /**
   * Add to the set of whitespace characters.
   * 
   * @param chars
   *          -
   */
  public void addWhitespaceChars(String chars) {
    if (chars == null) {
      return;
    }
    whitespace = addToSortedList(chars, whitespace);
  }

  /**
   * Set the set of word characters.
   * 
   * @param chars
   *          -
   */
  public void setWordChars(String chars) {
    if (chars == null) {
      chars = "";
    }
    wordChars = makeSortedList(chars);
  }

  /**
   * Add to the set of word characters.
   * 
   * @param chars
   *          -
   */
  public void addWordChars(String chars) {
    if (chars == null) {
      return;
    }
    wordChars = addToSortedList(chars, wordChars);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



