Exemple #1
0
  public ITable getTable(String tableName) throws DataSetException {
    logger.debug("getTable(tableName={}) - start", tableName);

    initialize();

    ITable found = (ITable) _orderedTableNameMap.get(tableName);
    if (found != null) {
      return found;
    } else {
      throw new NoSuchTableException(tableName);
    }
  }