blob: f6666d4f2a151ad2dedcce1c8a96ffa407fb5c00 [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.content.orm;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.jpt.core.internal.IMappingKeys;
import org.eclipse.jpt.core.internal.mappings.ITransient;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Xml Transient</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.jpt.core.internal.content.orm.OrmPackage#getXmlTransient()
* @model kind="class"
* @generated
*/
public class XmlTransient extends XmlAttributeMapping implements ITransient
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected XmlTransient() {
super();
}
@Override
protected void initializeOn(XmlAttributeMapping newMapping) {
newMapping.initializeFromXmlTransientMapping(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return OrmPackage.Literals.XML_TRANSIENT;
}
@Override
public int xmlSequence() {
return 8;
}
public String getKey() {
return IMappingKeys.TRANSIENT_ATTRIBUTE_MAPPING_KEY;
}
} // XmlTransient