blob: 20d8a8f21f49c21aa9b6617ca68b82c8489dee4a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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.context.base;
public interface IBasicMapping extends IAttributeMapping, IColumnMapping, IFetchable, INullable
{
FetchType DEFAULT_FETCH_TYPE = FetchType.EAGER;
boolean isLob();
void setLob(boolean value);
String LOB_PROPERTY = "lobProperty";
EnumType getEnumerated();
EnumType getDefaultEnumerated();
String DEFAULT_ENUMERATED_PROPERTY = "defaultEnumeratedProperty";
EnumType DEFAULT_ENUMERATED = EnumType.ORDINAL;
EnumType getSpecifiedEnumerated();
void setSpecifiedEnumerated(EnumType newSpecifiedEnumerated);
String SPECIFIED_ENUMERATED_PROPERTY = "specifiedEnumeratedProperty";
}