コード例 #1
0
  /**
   * Reset.
   *
   * @return the searchpath string
   * @see org.jnetpcap.util.config.ConfigString#reset()
   */
  @Override
  public SearchpathString reset() {

    super.reset();
    pathContents.clear();

    return this;
  }
コード例 #2
0
  /** Cleanup string. */
  private void cleanupString() {
    super.expand("", variables, properties);
    remove("\\\r\n");
    trimToSize();

    start = 0;
    end = -1;
  }