/******************************************************************************* * Copyright (c) 2013, 2014 Red Hat, Inc. * 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: * Red Hat Inc. - initial API and implementation and/or initial documentation *******************************************************************************/ package org.eclipse.thym.core.natures; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProjectNature; import org.eclipse.core.runtime.CoreException; import org.eclipse.thym.core.HybridCore; public class HybridAppNature implements IProjectNature { public static final String NATURE_ID = HybridCore.PLUGIN_ID + ".HybridAppNature"; @Override public void configure() throws CoreException { // TODO Auto-generated method stub } @Override public void deconfigure() throws CoreException { // TODO Auto-generated method stub } @Override public IProject getProject() { // TODO Auto-generated method stub return null; } @Override public void setProject(IProject project) { // TODO Auto-generated method stub } }