/******************************************************************************* * Copyright (c) 2015 QNX Software Systems 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: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.arduino.core.internal; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProjectDescription; import org.eclipse.core.resources.IProjectNature; import org.eclipse.core.runtime.CoreException; public class ArduinoProjectNature implements IProjectNature { private IProject project; public static final String ID = Activator.getId() + ".arduinoNature"; //$NON-NLS-1$ @Override public IProject getProject() { return project; } @Override public void setProject(IProject project) { this.project = project; } public static boolean hasNature(IProject project) throws CoreException { IProjectDescription projDesc = project.getDescription(); for (String id : projDesc.getNatureIds()) { if (id.equals(ID)) return true; } return false; } @Override public void configure() throws CoreException { } @Override public void deconfigure() throws CoreException { } }