Author: Grid.Qian
Date: 2008-07-03 01:37:05 -0400 (Thu, 03 Jul 2008)
New Revision: 9052
Modified:
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/commands/ClientSampleCreationCommand.java
Log:
JBIDE-2478: correct some print errors in sample client class
Modified:
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/commands/ClientSampleCreationCommand.java
===================================================================
---
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/commands/ClientSampleCreationCommand.java 2008-07-03
00:50:23 UTC (rev 9051)
+++
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/commands/ClientSampleCreationCommand.java 2008-07-03
05:37:05 UTC (rev 9052)
@@ -109,7 +109,7 @@
createWebServiceClient(clientUnits, serviceUnits, sb);
sb.append("
System.out.println(\"***********************\");");
sb.append(LINE_SEPARATOR);
- sb.append(JBossWSCreationCoreMessages.Client_Sample_Run_Over);
+ sb.append("
System.out.println(\"").append(JBossWSCreationCoreMessages.Client_Sample_Run_Over).append("\");");
sb.append(LINE_SEPARATOR);
sb.append("}");
try {
@@ -168,7 +168,7 @@
private void callWebServiceOperation(TypeDeclaration typeDec,
StringBuffer sb, int i) {
sb.append(" System.out.println(\""
- + "Create Web Service Operation...\");");
+ + "Call Web Service Operation...\");");
sb.append(LINE_SEPARATOR);
MethodDeclaration methodDec[] = typeDec.getMethods();
Show replies by date