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

com.gwtplatform.dispatch.annotation.PersonProxy Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.gwtplatform.dispatch.annotation;

import com.google.web.bindery.requestfactory.shared.ProxyFor;
import com.google.web.bindery.requestfactory.shared.EntityProxy;
import com.google.web.bindery.requestfactory.shared.EntityProxyId;

@ProxyFor(com.gwtplatform.dispatch.annotation.Person.class)
public interface PersonProxy extends EntityProxy { 

  EntityProxyId stableId();

  int getId();

  java.lang.Long getAge();

  float getWeight();

  com.gwtplatform.dispatch.annotation.proxy.AddressProxy getAddressDetail();

  com.gwtplatform.dispatch.annotation.DetailProxy getDetail();

  void setId(int id);

  void setAge(java.lang.Long age);

  void setWeight(float weight);

  void setAddressDetail(com.gwtplatform.dispatch.annotation.proxy.AddressProxy addressDetail);

  void setDetail(com.gwtplatform.dispatch.annotation.DetailProxy detail);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy