/*=============================================================================# # Copyright (c) 2014-2016 Stephan Wahlbrink (WalWare.de) and others. # 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: # Stephan Wahlbrink - initial API and implementation #=============================================================================*/ package de.walware.docmlet.wikitext.internal.core; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProjectDescription; import org.eclipse.core.runtime.CoreException; import de.walware.ecommons.resources.core.AbstractProjectNature; import de.walware.ecommons.resources.core.ProjectUtils; import de.walware.docmlet.wikitext.core.IWikitextProject; import de.walware.docmlet.wikitext.core.WikitextProjects; import de.walware.docmlet.wikitext.internal.core.builder.WikitextProjectBuilder; public class WikitextProject extends AbstractProjectNature implements IWikitextProject { public static WikitextProject getWikitextProject(final IProject project) { try { return (project != null) ? (WikitextProject) project.getNature(WikitextProjects.WIKITEXT_NATURE_ID) : null; } catch (final CoreException e) { WikitextCorePlugin.log(e.getStatus()); return null; } } public WikitextProject() { } @Override public void addBuilders() throws CoreException { final IProject project= getProject(); final IProjectDescription description= project.getDescription(); boolean changed= false; changed|= ProjectUtils.addBuilder(description, WikitextProjectBuilder.BUILDER_ID); if (changed) { project.setDescription(description, null); } } @Override public void removeBuilders() throws CoreException { final IProject project= getProject(); final IProjectDescription description= project.getDescription(); boolean changed= false; changed|= ProjectUtils.removeBuilder(description, WikitextProjectBuilder.BUILDER_ID); if (changed) { project.setDescription(description, null); } } }