blob: cc39280cb8838daf360e99db99e5be570b223647 [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.java;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.jpa.core.context.java.JavaReadOnlyOverride;
import org.eclipse.jpt.jpa.core.internal.context.OverrideTextRangeResolver;
public class JavaOverrideTextRangeResolver
implements OverrideTextRangeResolver
{
protected final JavaReadOnlyOverride javaOverride;
protected final CompilationUnit astRoot;
public JavaOverrideTextRangeResolver(JavaReadOnlyOverride javaOverride, CompilationUnit astRoot) {
this.javaOverride = javaOverride;
this.astRoot = astRoot;
}
public TextRange getNameTextRange() {
return this.javaOverride.getNameTextRange(this.astRoot);
}
}