blob: 76f6fada2bcb7702358c33405a3b35215a9e9cc1 [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.core.internal.context.orm;
import org.eclipse.jpt.core.context.orm.OrmEntity;
import org.eclipse.jpt.core.internal.context.PrimaryKeyTextRangeResolver;
import org.eclipse.jpt.core.utility.TextRange;
public class OrmEntityTextRangeResolver
implements PrimaryKeyTextRangeResolver
{
private OrmEntity entity;
public OrmEntityTextRangeResolver(OrmEntity entity) {
this.entity = entity;
}
public TextRange getTypeMappingTextRange() {
return this.entity.getValidationTextRange();
}
public TextRange getIdClassTextRange() {
return this.entity.getIdClassReference().getValidationTextRange();
}
public TextRange getAttributeMappingTextRange(String attributeName) {
return this.entity.getPersistentType().
getAttributeNamed(attributeName).getMapping().getValidationTextRange();
}
}