blob: 77ab81816ac2f245c0b81b046f116471a95e3ed5 [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.Platform;
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jpt.core.JpaFactory;
import org.eclipse.jpt.core.JpaFile;
import org.eclipse.jpt.core.JpaFileProvider;
import org.eclipse.jpt.core.JpaProject;
/**
* Java source code
*/
public class JavaJpaFileProvider
implements JpaFileProvider
{
public static final String RESOURCE_TYPE = "Java"; //$NON-NLS-1$
// singleton
private static final JavaJpaFileProvider INSTANCE = new JavaJpaFileProvider();
/**
* Return the singleton.
*/
public static JavaJpaFileProvider instance() {
return INSTANCE;
}
/**
* Ensure single instance.
*/
private JavaJpaFileProvider() {
super();
}
public IContentType getContentType() {
return Platform.getContentTypeManager().getContentType(JavaCore.JAVA_SOURCE_CONTENT_TYPE);
}
public JpaFile buildJpaFile(JpaProject jpaProject, IFile file, JpaFactory factory) {
return factory.buildJavaJpaFile(jpaProject, file, RESOURCE_TYPE);
}
}