All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.angular.client.Model Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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