blob: ca8f9b5c45c0c1f9870b25ebe8af1650b79fc734 [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.eclipselink.core.internal.resource.orm.translators;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmFactory;
import org.eclipse.wst.common.internal.emf.resource.Translator;
public class InstantiationCopyPolicyTranslator extends Translator
implements EclipseLinkOrmXmlMapper
{
public InstantiationCopyPolicyTranslator(String domNameAndPath, EStructuralFeature aFeature) {
super(domNameAndPath, aFeature, END_TAG_NO_INDENT);
}
@Override
public EObject createEMFObject(@SuppressWarnings("unused") String nodeName, @SuppressWarnings("unused") String readAheadName) {
return EclipseLinkOrmFactory.eINSTANCE.createXmlInstantiationPolicy();
}
}