blob: 62ef537690260c88c43bb8609f09326b1c64e8e0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 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.OrmReadOnlyTable;
import org.eclipse.jpt.jpa.core.internal.context.TableTextRangeResolver;
public class OrmTableTextRangeResolver
implements TableTextRangeResolver
{
protected final OrmReadOnlyTable table;
public OrmTableTextRangeResolver(OrmReadOnlyTable table) {
super();
this.table = table;
}
public TextRange getNameTextRange() {
return this.table.getNameTextRange();
}
public TextRange getCatalogTextRange() {
return this.table.getCatalogTextRange();
}
public TextRange getSchemaTextRange() {
return this.table.getSchemaTextRange();
}
}