blob: d5f514a9a09ac4c02a0dc5d41c0a2cc9a840bb39 [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.OrmReadOnlyBaseColumn;
import org.eclipse.jpt.jpa.core.internal.context.BaseColumnTextRangeResolver;
public class OrmBaseColumnTextRangeResolver
extends AbstractOrmNamedColumnTextRangeResolver<OrmReadOnlyBaseColumn>
implements BaseColumnTextRangeResolver
{
public OrmBaseColumnTextRangeResolver(OrmReadOnlyBaseColumn column) {
super(column);
}
public TextRange getTableTextRange() {
return this.column.getTableTextRange();
}
}