What is wrong with package statement?
Dear all,
I have a very strange problem with my classes. In two classes, I used
pakage saxbean;
in the first line of the code to specify that the two classes are in the same package named saxbean. However, one class can be compiled without any problem,the other one always gave error messages:
can't resolve symbol...
My classes in this case are
1. MyElement.java and 2. MySAXParserBean.java
where 2 use 1. when I tried to compile 2, then the error messages came saying:
can't resolve symbol MeElement
location: saxbean.MySAXParserBean.java
even though there is a class called MyElement.class in the same directory.
?
Any idea, anyone?
BTW: no problems with other programs if using pakage statement. And the enviroment settings should be fine.
I was despressed by it :(

