I suspect I misunderstood some basic concept of packages in Java. Here is my hierarchy of the project:
- Application (class with main)
- Option (class)
- Algorithm (Package)
- PreProcessOptions (class)
- GenerateImage (class)
Now, I would like that PreProcessOptions class will use Option class, to get all necessary data, but my IDE cannot find the class.
Any explanations? Thanks.