Hi all, when i upgrade GWT from 2.7.0-SNAPSHOT to 2.7.0, the code below is not working: obj instanceof CollaborativeObjectImpl and obj instanceof JsonObject
Here are my type declarations: @JsType interface EventTarget @JsType interface CollaborativeObject extends EventTarget @JsType interface CollaborativeString extends CollaborativeObject abstract class CollaborativeObjectImpl implements CollaborativeObject class CollaborativeStringImpl extends CollaborativeObjectImpl implements CollaborativeString class JsJsonValue extends JavaScriptObject interface JsonElement extends java.io.Serializable interface JsonObject extends JsonElement class JsJsonElement extends JsJsonValue implements JsonElement final class JsJsonObject extends JsJsonElement implements JsonObject the full source code is hosted at github: https://github.com/goodow/realtime-store/blob/master/src/main/java/com/goodow/realtime/store/impl/JsonSerializer.java#L60-L69 and https://github.com/goodow/realtime-json/blob/master/src/main/java/com/goodow/realtime/json/JsonObject.java Thanks for help :) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
