blob: 9beeb4d454e86aaf775a9487d9e758b03544b6c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.resource.java;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.internal.ITextRange;
public interface PrimaryKeyJoinColumn extends NamedColumn
{
String ANNOTATION_NAME = JPA.PRIMARY_KEY_JOIN_COLUMN;
String getReferencedColumnName();
void setReferencedColumnName(String referencedColumnName);
String REFERENCED_COLUMN_NAME_PROPERTY = "referencedColumnNameProperty";
/**
* Return whether the specified postition touches the referencedColumnName element.
* Return false if the referencedColumnName element does not exist.
*/
boolean referencedColumnNameTouches(int pos, CompilationUnit astRoot);
/**
* Return the ITextRange for the referencedColumnName element. If the referencedColumnName
* element does not exist return the ITextRange for the PrimaryKeyJoinColumn annotation.
*/
ITextRange referencedColumnNameTextRange(CompilationUnit astRoot);
}