I am currently trying to set up interprolog(see http://www.declarativa.com/interprolog/) and i've followed the steps on the site, but now I'm wondering how i can use interprologs classes from my eclipse ide? Do i need to import the classes into my project so i can use interprolog?? How can i go about doing so?
Thanks
Have you tried adding
interprolog.jar
to the build path (located inside http://www.declarativa.com/interprolog/interprolog212.zip)?In Eclipse you accomplish this by:
Properties
Java build path
in the left side viewLibraries
tabAdd External Jar...
and locate the interprolog.jar file.Now you should be able to use the API, for example by typing
new TermListModel
and have Eclipse add theimport com.declarativa.interprolog.gui.TermListModel
for you.