What should I name my base or root Java class in Swing application?
Right now my project is called FirstSwingProject followed by src folder and a package named base.
But my main class is called PaneFactory.java because the idea is that I am creating a Swing app that will open new sticky notes.
Can anyone suggest a better name for this class?
Is there a Java naming convention out there for the first class?
There are no conventions but personally I usually name my base class the same or similar as the name I intend on using for my program||app.
So in your case maybe NoteReader or something?
or as somebody else suggested just Main.java