blob: 348cda4306c1b784cdca06561b9d49bf4f261b56 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.jpt.core.JpaFactory;
import org.eclipse.jpt.core.JpaFile;
import org.eclipse.jpt.core.JpaFileProvider;
import org.eclipse.jpt.core.JpaProject;
import org.eclipse.jpt.core.JptCorePlugin;
/**
* orm.xml
*/
public class OrmJpaFileProvider
implements JpaFileProvider
{
public static final String RESOURCE_TYPE = "ORM"; //$NON-NLS-1$
// singleton
private static final OrmJpaFileProvider INSTANCE = new OrmJpaFileProvider();
/**
* Return the singleton.
*/
public static OrmJpaFileProvider instance() {
return INSTANCE;
}
/**
* Ensure single instance.
*/
private OrmJpaFileProvider() {
super();
}
public IContentType getContentType() {
return JptCorePlugin.ORM_XML_CONTENT_TYPE;
}
public JpaFile buildJpaFile(JpaProject jpaProject, IFile file, JpaFactory factory) {
return factory.buildOrmJpaFile(jpaProject, file, RESOURCE_TYPE);
}
}