Well, hopefully it's quick and easy.
I have two separate java projects, “Library” and “Project”, and I have a class in “Project” that wants to implement the method found in the “Library”. I'm looking for some kind of “import” call to make the “Project” class at the top of the class so that the methods found in the “Library” are available in this project.
How should I do it?
On the other hand, this project "Library" exists only because I want to use some of my own classes to complement the usual java libraries (java.util, java.io, etc.). Is there a way to add my java project to my java libraries? (i.e. import java.Library.className; ')
Thank,
Jonathan
source
share