blob: 079b3a282f585a5b9a294eb7c9452bc72d312f76 [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.context;
import org.eclipse.jpt.jpa.core.internal.context.TableColumnTextRangeResolver;
import org.eclipse.jpt.jpa.core.internal.context.JptValidator;
import org.eclipse.jpt.jpa.db.Table;
/**
* Read-only association override relationship
* <p>
* Provisional API: This interface is part of an interim API that is still
* under development and expected to change significantly before reaching
* stability. It is available at this early stage to solicit feedback from
* pioneering adopters on the understanding that any code that uses this API
* will almost certainly be broken (repeatedly) as the API evolves.
*
* @see AssociationOverride
*/
public interface ReadOnlyOverrideRelationship
extends ReadOnlyJoinColumnRelationship
{
String getAttributeName();
/**
* @see ReadOnlyOverride#getTypeMapping()
*/
TypeMapping getTypeMapping();
/**
* Return whether the specified table cannot be explicitly specified
* as the table for the relationship's join column.
*/
boolean tableNameIsInvalid(String tableName);
/**
* Return the names of tables that are valid for the relationship's
* join column.
*/
Iterable<String> getCandidateTableNames();
/**
* Return the database table for the specified table name.
*/
Table resolveDbTable(String tableName);
String getDefaultTableName();
JptValidator buildColumnValidator(ReadOnlyBaseColumn column, ReadOnlyBaseColumn.Owner owner, TableColumnTextRangeResolver textRangeResolver);
void initializeOnSpecified(OverrideRelationship specifiedRelationship);
}