You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Tom Jordahl <to...@macromedia.com> on 2002/05/29 16:38:56 UTC

RE: example 2 submit

Richard,

This file is used as Calculator.jws.  See the users guide.
I don't believe it is appropriate to add the package directive unless you update the users guide and test that it works.

This might not be a bad idea, as jws files and packages are a bit tricky if I remember correctly.


--
Tom Jordahl
Macromedia


-----Original Message-----
From: rsitze@apache.org [mailto:rsitze@apache.org]
Sent: Tuesday, May 28, 2002 7:22 PM
To: xml-axis-cvs@apache.org
Subject: cvs commit: xml-axis/java/samples/userguide/example2
Calculator.java


rsitze      02/05/28 16:21:58

  Modified:    java/samples/userguide/example2 Calculator.java
  Log:
  Added missing package declaration
  
  Revision  Changes    Path
  1.8       +2 -0      xml-axis/java/samples/userguide/example2/Calculator.java
  
  Index: Calculator.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/userguide/example2/Calculator.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Calculator.java	30 Oct 2001 16:46:32 -0000	1.7
  +++ Calculator.java	28 May 2002 23:21:57 -0000	1.8
  @@ -52,6 +52,8 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    */
  + 
  +package samples.userguide.example2;
   
   public class Calculator {
     public int add(int i1, int i2)