Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 93a232b42728e581fe60ae097fc710785e90860e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * 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.persistence;

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.persistence.PersistenceXmlContextNodeFactory;
import org.eclipse.jpt.core.context.persistence.PersistenceXmlDefinition;
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 AbstractPersistenceXmlContextNode
	extends AbstractXmlContextNode
	implements XmlContextNode
{

	// ********** constructor **********

	protected AbstractPersistenceXmlContextNode(JpaContextNode parent) {
		super(parent);
	}
	
	public PersistenceXmlDefinition getPersistenceXmlDefinition() {
		return (PersistenceXmlDefinition) getJpaPlatform().getResourceDefinition(getContentType());
	}
	
	public EFactory getResourceNodeFactory() {
		return getPersistenceXmlDefinition().getResourceNodeFactory();
	}
	
	public PersistenceXmlContextNodeFactory getContextNodeFactory() {
		return getPersistenceXmlDefinition().getContextNodeFactory();
	}
}

Back to the top