So I am working on a lemmatizer, currently, so I have one package where I will store classes corresponding to parts of speech, e.g. Noun, Verb and what not. And then in another package I will have my class that will contain main.
I would like for my main class to be able to access any of the classes within the parts of speech package. W3 schools is a dirty liar, because they said using the keyword "class" by default allows said class to be used by other classes in the same package. But no, I have "class Noun", so default class, but main, in another package, can't make a Noun object.
And I use Eclipse, and Eclipse has this feature "Organize Imports" where it will apparently import packages for you. But when I click on it, or use the shortcut ctrl + shift + o, literally nothing happens. No dialogue window comes up, nothing. So I clearly need to do it the manual way.