diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-07-06 20:36:48 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-07-06 20:36:48 +0000 |
commit | eb44efec033b9327a495569b7449325ee07ed48c (patch) | |
tree | 5837cc37b1a2cde805d7b4d45e0378583cc88006 /sca-java-2.x/trunk/modules/shell/src/main/java/org/apache | |
parent | 52c5c05cd6669b5fae2813877fc073eb10b7a6c4 (diff) |
Add help for installed and remove commands
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@961011 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/shell/src/main/java/org/apache')
-rw-r--r-- | sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java index 098933caef..9211a8af09 100644 --- a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java +++ b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java @@ -492,7 +492,8 @@ public class Shell { void helpInstalled() {
out.println(" installed [<contributionURI>]");
out.println();
- out.println(" XXX");
+ out.println(" Shows information about the contributions installed on this node,");
+ out.println(" including the contribution URI and location along with the URI and QName of any deployed composites");
out.println();
out.println(" Arguments:");
out.println(" contributionURI - (optional) the URI of an installed contribution");
@@ -501,10 +502,10 @@ public class Shell { void helpRemove() {
out.println(" remove <contributionURI>");
out.println();
- out.println(" XXX");
+ out.println(" Removes an installed contribution");
out.println();
out.println(" Arguments:");
- out.println(" contributionURI - (optional) the URI of an installed contribution");
+ out.println(" contributionURI - (required) the URI of an installed contribution");
}
void helpAddToDomainLevelComposite() {
|