blob: c57fd8a5f5f0934a8ca5659c957ed97e04328290 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.core.internal.context.orm;
import org.eclipse.emf.ecore.EFactory;
import org.eclipse.jpt.core.context.JpaContextNode;
import org.eclipse.jpt.core.context.XmlContextNode;
import org.eclipse.jpt.core.context.orm.OrmXmlContextNodeFactory;
import org.eclipse.jpt.core.context.orm.OrmXmlDefinition;
import org.eclipse.jpt.core.internal.context.AbstractXmlContextNode;
/**
* Use this abstract class for context nodes that are part of an OrmXml file.
* This will not work for purely MappingFile implementations
*/
public abstract class AbstractOrmXmlContextNode
extends AbstractXmlContextNode
implements XmlContextNode
{
// ********** constructor **********
protected AbstractOrmXmlContextNode(JpaContextNode parent) {
super(parent);
}
public OrmXmlDefinition getMappingFileDefinition() {
return (OrmXmlDefinition) getJpaPlatform().getResourceDefinition(getResourceType());
}
public EFactory getResourceNodeFactory() {
return getMappingFileDefinition().getResourceNodeFactory();
}
public OrmXmlContextNodeFactory getXmlContextNodeFactory() {
return getMappingFileDefinition().getContextNodeFactory();
}
}