Hi,
My WebApp in the development phase looks like the following:
- a model file: webappname/src/com/example/model/BeerExpert.html. It has a package declaration that is "package com.example.model;"
- a view file: webappname/src/com/example/web/BeerSelect.html. It has a package declaration that is "package com.example.web;". That file imports the model file with the following command: "import com.example.model.*;"
When i compile the model file from webappname, all ok. But then,. when i compile the view file from webappname, it says:
"
src/com/example/web/BeerSelect.java:3: package com.example.model does not exist
import com.example.model.*;
^
"
Any advice? Thanks for your help, Patrick