blob: 920190ad8310d9bd62a906a49637640ef4442865 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ui.internal.editor;
public final class LuaDocumentorTags {
public static final String MODULE = "@module"; //$NON-NLS-1$
public static final String FUNCTION = "@function"; //$NON-NLS-1$
public static final String PARAM = "@param"; //$NON-NLS-1$
public static final String FIELD = "@field"; //$NON-NLS-1$
public static final String TYPE = "@type"; //$NON-NLS-1$
public static final String RETURN = "@return"; //$NON-NLS-1$
public static final String USAGE = "@usage"; //$NON-NLS-1$
public static final String EXTENDS = "@extends"; //$NON-NLS-1$
public static final String LIST = "@list"; //$NON-NLS-1$
public static final String MAP = "@map"; //$NON-NLS-1$
public static final String CALLOF = "@callof"; //$NON-NLS-1$
private LuaDocumentorTags() {
// private constructor
}
public static String[] getTags() {
return new String[] { MODULE, FUNCTION, PARAM, FIELD, TYPE, RETURN, USAGE, EXTENDS, LIST, MAP, CALLOF };
}
}