*
* @see #OPT_WIDGETID
*/
- public static final String DESC_WIDGETID = "Command is performed of running widget kill in target, application id is user written id in config.xml";
+ public static final String DESC_WIDGETID = "Application id (user-written id in config.xml)";
/**
* <p>
*
* @see #OPT_WIDGETFILE
*/
- public static final String DESC_WIDGETFILE = "Command is performed of widget file install in target";
+ public static final String DESC_WIDGETFILE = "Widget file (*.wgt)";
/**
* <p>
*
* @see #OPT_WIDGETFILE
*/
- public static final String DESC_NAME = "Generation project name";
+ public static final String DESC_NAME = "Project name";
/**
* <p>
*
* @see #OPT_WIDGETFILE
*/
- public static final String DESC_PATH = "Generation project path";
+ public static final String DESC_PATH = "Project path";
/**
import org.apache.commons.cli.OptionBuilder;
import org.apache.commons.cli.Options;
import org.tizen.cli.exec.Help;
+import org.tizen.cli.exec.LaunchOptionConstants;
import org.tizen.cli.exec.WRTLauncher;
import org.tizen.common.core.command.Executor;
import org.tizen.common.core.command.Prompter;
*
* @see #OPT_WIDGETID
*/
- protected static final String DESC_WIDGETID = "Command is performed of widget id uninstall in target, widget id is user written id in config.xml";
+ protected static final String DESC_WIDGETID = LaunchOptionConstants.DESC_WIDGETID;
/**
* Entry point for cli main
// exclude ui framework and use target's original library option
private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK = "exclude-uifw";
private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK_SHORT = "euf";
- private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK = "If you want to use Tizen ui framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_SHORT + " option.\nOnly for application using Tizen UI Framework.";
+ private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK = "If you want to use Tizen UI Framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_SHORT + " option.\nThis option is only for application using Tizen UI Framework.";
// exclude ui framework and use target's minified library option
private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN = "exclude-uifw-min";
private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN_SHORT = "eufm";
- private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK_USEMIN = "If you want to use minified Tizen ui framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN_SHORT + " option.";
+ private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK_USEMIN = "If you want to use minified Tizen UI Framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN_SHORT + " option.";
// excluding files option
private static final String OPT_NAME_EXCLUDE = "exclude";
- private static final String OPT_DESC_EXCLUDE = "Add exclude file pattern. By default, following resources will be excluded.\n.build* , .project , .settings , .sdk_delta.info , *.wgt";
+ private static final String OPT_DESC_EXCLUDE = "Add exclude file pattern. By default, following resources will be excluded:\n.build*, .project, .settings, .sdk_delta.info, *.wgt";
// set output option
private static final String OPT_NAME_OUTPUT = "output";
- private static final String OPT_DESC_OUTPUT = "Set output directory for build resources. Default is '.buildResult'";
+ private static final String OPT_DESC_OUTPUT = "Set output directory for build resources. By default, '.buildResult' is used.";
// set reference project option
private static final String OPT_NAME_REFERENCE_PROJECT = "ref-prj";
private static final String OPT_NAME_REFERENCE_PROJECT_SHORT = "rp";
- private static final String OPT_DESC_REFERENCE_PROJECT = "Set reference project.\nThe reference project must be native project. Only for Hybrid application.";
+ private static final String OPT_DESC_REFERENCE_PROJECT = "Set reference project.\nThe reference project must be a Tizen Native project. This option is only for hybrid application.";
// ResourceLayer
protected static final String RESOURCE_LAYER_START = "start";