com.google.gwt.angular.client.impl.JsModelBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of angulargwt Show documentation
Show all versions of angulargwt Show documentation
AngularJS integration for GWT
package com.google.gwt.angular.client.impl;
import com.google.gwt.angular.client.Model;
import com.google.gwt.angular.client.Util;
import com.google.gwt.core.client.JavaScriptObject;
import elemental.json.JsonObject;
/**
* Base of all Model implementations.
*/
public class JsModelBase> extends JavaScriptObject implements Model {
protected JsModelBase() {
}
@Override
final public JsonObject json() {
return Util.reinterpret_cast(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy