[Title] Add boilplate and format source
authorBon-Yong Lee <bonyong.lee@samsung.com>
Thu, 6 Sep 2012 04:22:53 +0000 (13:22 +0900)
committerBon-Yong Lee <bonyong.lee@samsung.com>
Thu, 6 Sep 2012 04:22:53 +0000 (13:22 +0900)
[Type]      Enhancement
[Module]    Sub
[Priority]  Minor
[CQ#]       // CQ Issue Number
[Redmine#]  // Redmine Isuue Number
[Problem]   // Problem Description
[Cause]     // Cause Description
[Solution]  // Solution Description
[TestCase]  // Executed the test-target (How to)

org.tizen.cli/src/org/tizen/cli/exec/Help.java

index f47d309..aa1bfb8 100755 (executable)
@@ -1,3 +1,27 @@
+/*\r
+ * Web IDE - Command Line Interface\r
+ *\r
+ * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.\r
+ *\r
+ * Contact: \r
+ * BonYong Lee <bonyong.lee@samsung.com>\r
+ * \r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ *\r
+ * Contributors:\r
+ * - S-Core Co., Ltd\r
+ *\r
+ */\r
 package org.tizen.cli.exec;\r
 \r
 import static org.tizen.common.util.StringUtil.EMPTY_STRING;\r
@@ -12,6 +36,15 @@ import org.apache.commons.cli.Options;
 import org.slf4j.Logger;\r
 import org.slf4j.LoggerFactory;\r
 \r
+/**\r
+ * <p>\r
+ * Help.\r
+ * \r
+ * Execute to print out usage for command line\r
+ * </p>\r
+ * \r
+ * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core)\r
+ */\r
 public class Help\r
 {\r
     \r
@@ -87,9 +120,14 @@ public class Help
      * \r
      * @return execution command\r
      */\r
-    protected String getSyntax()\r
+    protected\r
+    String\r
+    getSyntax()\r
     {\r
-        return nvl( System.getProperty( PROP_PRG ), "java " + getClass().getName() );\r
+        return nvl(\r
+            System.getProperty( PROP_PRG ),\r
+            "java " + getClass().getName()\r
+        );\r
     }\r
 \r
     \r