blob: 9c199ab2db67a407a86beea6cae232e1497989aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.eclipselink1_1.core.resource.orm;
import org.eclipse.jpt.core.resource.orm.AccessType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Xml Attribute Mapping</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.jpt.eclipselink1_1.core.resource.orm.XmlAttributeMapping#getAccess <em>Access</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.jpt.eclipselink1_1.core.resource.orm.EclipseLink1_1OrmPackage#getXmlAttributeMapping()
* @model kind="class" interface="true" abstract="true"
* @generated
*/
public interface XmlAttributeMapping extends org.eclipse.jpt.core.resource.orm.XmlAttributeMapping
{
/**
* Returns the value of the '<em><b>Access</b></em>' attribute.
* The default value is <code>"PROPERTY"</code>.
* The literals are from the enumeration {@link org.eclipse.jpt.core.resource.orm.AccessType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Access</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Access</em>' attribute.
* @see org.eclipse.jpt.core.resource.orm.AccessType
* @see #setAccess(AccessType)
* @see org.eclipse.jpt.eclipselink1_1.core.resource.orm.EclipseLink1_1OrmPackage#getXmlAttributeMapping_Access()
* @model default="PROPERTY"
* @generated
*/
AccessType getAccess();
/**
* Sets the value of the '{@link org.eclipse.jpt.eclipselink1_1.core.resource.orm.XmlAttributeMapping#getAccess <em>Access</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Access</em>' attribute.
* @see org.eclipse.jpt.core.resource.orm.AccessType
* @see #getAccess()
* @generated
*/
void setAccess(AccessType value);
} // XmlAttributeMapping