I have the following structure for my java project:
-src
-(default package)
-Calculator.java
-AnotherClass.java
-EvenOneMoreClass.java
-ui
-MainWindow.java
I know I can include main window in Calculator with import ui.MainWindow
. How do I import AnotherClass.java
into MainWindow.java
?
Or, is my structure just wrong for how I want this to work?