hello,
i'm using gwt with db4o database. i have to insert a server code in
client class code in my domain beans like this :
package com.{package name}.client.model;
import com.db4o.ObjectContainer;
public class Person {
private String name;
....
public boolean objectCanNew(ObjectContainer container) {
.....
return true;
}
....
}
the method objectCanNew(...) must have this name and this signature.
but gwt don't recognize the import com.db4o.ObjectContainer.
is there a way for specify to gwt compiler some code to ignore?
thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---