blob: 0a73c7b1798683f81b352bad479743e381dfffb5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 Sierra Wireless 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:
* Sierra Wireless - initial API and implementation
*******************************************************************************/
package org.eclipse.ldt.core;
import org.eclipse.dltk.core.ScriptNature;
import org.eclipse.ldt.core.internal.Activator;
/**
* The Class LuaNature gives a common denomination used by several components of the IDE.
*
* @author Kevin KIN-FOO <kkin-foo@sierrawireless.com>
*/
public class LuaNature extends ScriptNature {
/**
* Nature of IDE composed from plug-in ID
*
* @return String
*/
public static final String ID = Activator.PLUGIN_ID + ".nature"; //$NON-NLS-1$
}