How to import the toolkitsΒΆ
At the beginning of most Java programs, functionality that resides in other files is imported with the import statement. Built-in packages are usually imported like the following:
import java.io.*;
OpenEye Toolkits resides in the openeye module. For example OEChem TK can imported as:
import openeye.oechem.*;