blob: 3a86a729c13a1eab6f63761fe436e1f712bcd4bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.core.internal.context.orm;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.jpa.core.context.orm.OrmTable;
import org.eclipse.jpt.jpa.core.internal.context.TableTextRangeResolver;
public class OrmTableTextRangeResolver
implements TableTextRangeResolver
{
protected final OrmTable ormTable;
public OrmTableTextRangeResolver(OrmTable ormTable) {
this.ormTable = ormTable;
}
protected OrmTable getTable() {
return this.ormTable;
}
public TextRange getNameTextRange() {
return this.ormTable.getNameTextRange();
}
public TextRange getCatalogTextRange() {
return this.ormTable.getCatalogTextRange();
}
public TextRange getSchemaTextRange() {
return this.ormTable.getSchemaTextRange();
}
}