com.google.gwt.angular.client.Model Maven / Gradle / Ivy
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