blob: 2d1f56c9d0204a1fa136fe630c9a39379da73eed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jaxb.core.internal;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jpt.common.core.internal.resource.java.source.SourcePackageInfoCompilationUnit;
import org.eclipse.jpt.common.core.resource.java.JavaResourceCompilationUnit;
import org.eclipse.jpt.jaxb.core.JaxbProject;
import org.eclipse.jpt.jaxb.core.JaxbResourceModelProvider;
import org.eclipse.jpt.jaxb.core.internal.plugin.JptJaxbCorePlugin;
/**
* Java package-info.java source code
*/
public class JavaPackageInfoResourceModelProvider
implements JaxbResourceModelProvider
{
// singleton
private static final JaxbResourceModelProvider INSTANCE = new JavaPackageInfoResourceModelProvider();
/**
* Return the singleton.
*/
public static JaxbResourceModelProvider instance() {
return INSTANCE;
}
/**
* Ensure single instance.
*/
private JavaPackageInfoResourceModelProvider() {
super();
}
public IContentType getContentType() {
return JavaResourceCompilationUnit.PACKAGE_INFO_CONTENT_TYPE;
}
public JavaResourceCompilationUnit buildResourceModel(JaxbProject jaxbProject, IFile file) {
ICompilationUnit compilationUnit = JavaCore.createCompilationUnitFrom(file);
try {
if (compilationUnit.getPackageDeclarations().length > 0){
return new SourcePackageInfoCompilationUnit(
compilationUnit,
jaxbProject.getPlatform().getAnnotationProvider(),
jaxbProject.getPlatform().getAnnotationEditFormatter(),
jaxbProject.getModifySharedDocumentCommandContext());
}
//ignore package-info placed in default package as
//it doesn't have package declaration and can't hold annotations
return null;
} catch (JavaModelException e) {
JptJaxbCorePlugin.instance().logError(e);
// Ignore -- project is in a bad state. This will get recalled if necessary
return null;
}
}
}