Exemplo n.º 1
0
  /** @param rootPath */
  public void setRootPath(String path) {
    this.rootPath = path;

    // Need to walk through the ColumnInfo objects and have them re-set their paths
    for (ColumnInfo colInfo : getBodyColumnInfoList()) {
      colInfo.setRootPath(this.rootPath);
    }

    // Need to walk through the ColumnInfo objects and have them re-set their paths
    for (ColumnInfo colInfo : getHeaderColumnInfoList()) {
      colInfo.setRootPath(this.rootPath);
    }

    setChanged(true);
  }