*/
public TableLayoutMonitor getTableLayoutMonitor(String tableName) {
Preconditions.checkState(mState.get() == State.OPEN, "InstanceMonitor is closed.");
LOG.debug("Retrieving TableLayoutMonitor for table {} with userID {}.",
KijiURI.newBuilder(mInstanceURI).withTableName(tableName).build(), mUserID);
return new ReferencedTableLayoutMonitor(tableName, mTableLayoutMonitors);
}