com.google.gwt.angular.client.Model 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;
import elemental.json.JsonObject;
/**
* Model classes are essentially ways of automatically creating Javascript Object backed
* Javabeans via interfaces. Declare getters and setters according to the JavaBean pattern,
* with or without 'fluent' setters, or omit the 'get' and 'set' prefixes.
*
* Create new instances via {@code Util.make(GWT.create(MyModel.class))}.
*/
public interface Model> {
JsonObject json();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy