Help Needed to import package
Hi, I am developing a JAVA project following Graphical Editing Framework in Eclipse.
I have 3 packages ( in order of build) - ProcessModel, Process Editor and Application.
I am trying to import application package and use its class in Process Model.
package cheme.ProcessModel.Interpreter;
import cheme.Application.*; // I have tried importing one class also
But I am getting compile time error " the import cheme.application can not be resolved" .
I assume this error is coming because Application package and its classes are not compiled and hence it is not allowing me to import and use them.
I have added the CLASSPATH variable with the folder address of Application package but no success.
Please help me and let me know how can I use the class of Application package in Process Model.
Thanks a Bunch in advance.