Eclipse RCP: ClassNotFoundException or How to make other bundle load my class
Details: I'm trying to use Jalapeno framework to connect my RCP app with Cache' database. After connection established, I'm trying to get all data from table exactly like in Jalapeno manual: if (objManager==null) return; DBClass cortege = null; try { Iterator terms = objManager.openByQuery(DBClass.class, null, null); System.out.println("terms ok"); while (terms.hasNext()){ System.out.println("has next"); cortege = (DBClass)terms.next(); } this code compiling, running and trowing exception java.lang.RuntimeException: myPluginId.views.DBClass at com.intersys.objects.POJOIterator.next