I am trying to import all the classes present in a user defined package, by
using the statement as
import mypack.*;
but it's not working in my program.
Its Giving error :
C:\Users\Nitin\java>javac AOTest.java
AOTest.java:6: cannot access AOperation
bad class file: .\AOperation.java
file does not contain class AOperation
Please remove or make sure it appears in the correct subdirectory of the classpa
th.
AOperation a=new AOperation();
^
1 error