blob: c2a71900699f4cea6ad03a5a006e8f9033f4dd50 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.plugins.jsdoc;
/**
* @author Werner Punz (latest modification by $Author$)
* @version $Revision$ $Date$
*/
public class JSDocMojoConst
{
public static final String TEMPLATES_JSDOC = "templates/jsdoc";
public static final String JSDOC = "jsdoc";
public static final String TEMP = "temp";
public static final String JSDOC_DIR = "jsdoc.dir";
public static final String APP = "app";
public static final String RUN_JS = "run.js";
public static final String PARAM_UNDOCUMENTED = "-a";
public static final String PARAM_UNDOCUMENTED_UNDERSCORED = "-A";
public static final String PARAM_PRIVATE = "-p";
public static final String PARAM_OUTPUT = "-d";
public static final String PARAM_TEMPLATE = "-t";
public static final String PARAM_JS_FLAG = "-j";
public static final String EQUALS = "=";
public static final String JAVASCRIPT = "javascript";
}