0 Replies Latest reply on Mar 5, 2008 7:13 AM by ranu_gokhe

    using java project's classes into a JBPM project

    ranu_gokhe

      i've created a JBPM project. Now i want to use the classes of a already created java project. I've added that project to my JBPM project. hence i can very well access the classes of the java project.
      I'm able to create the objects of the classes that i want to use.
      but the problem is i'm not able to use functions of these classes by their objects.

      Ex.

      TestFDBFirstwfmTable testTable = new TestFDBFirstwfmTable();
       testTable.testinsertRow();
      


      the function insertRow() in line 2 gives an error as "Syntax error on token "testinsertRow", Identifier expected after this token"

      it is not recognizing the functions of this object.
      any pointers to solve this problem?