blob: 489dad19cf471b984dce68dcc955f7739f8e3ed2 [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 IColumnMapping extends IJpaContextNode, IColumn.Owner
{
IColumn getColumn();
TemporalType getTemporal();
void setTemporal(TemporalType value);
String TEMPORAL_PROPERTY = "temporalProperty";
}