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: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 28, 2002 7:22 PM To: [EMAIL PROTECTED] 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)