Hi Yashraj,
Setting the classpath to " . . . \classes" (as above) gives me the following:
error: cannot read: TechnicalBook.java
1 error
When I do the same, but with the the location of the ChildrenBook file specified (outside the classpath, so:
javac -classpath "c:\. . .\WEB-INF\classes" booklibrary\ChildrenBook.java
I get the previous error:
booklibrary\ChildrenBook.java:28: cannot resolve symbol
symbol : constructor Book (java.lang.String)
location: class booklibrary.Book
super(title);
^
1 error
Regds,
Ped
|