How to import .class files into your Eclipse project

Markov documents:   index   overview    markov    justification   turnin-instructions    code examples   partners     importing classes     MultiSet

Importing the MultiSet Classes

There are two .class files (related to Multiset)  that you need to use in your Eclipse project.

Here is how you can set things up and make sure that they work:

Create your Markov project in Eclipse.

In Windows Explorer:
   Create a folder called lib inside Markov.
   Place the .class files inside that folder.
   Place the TestMultiset.java file in your src folder (or at the top level of your project folder if you do not have a src folder).

In Eclipse:
   Right-click the Project and choose Refresh.  The lib folder should appear.
   Right-click again and choose Properties --> java build path --> libraries --> add class folder
   Check the lib folder and click the OK button.

You should now be able to compile and run TestMultiset.