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.jarto the build path (located inside http://www.declarativa.com/interprolog/interprolog212.zip)?In Eclipse you accomplish this by:
PropertiesJava build pathin the left side viewLibrariestabAdd External Jar...and locate the interprolog.jar file.Now you should be able to use the API, for example by typing
new TermListModeland have Eclipse add theimport com.declarativa.interprolog.gui.TermListModelfor you.