Back to project page jpdroid.
The source code is released under:
GNU General Public License
If you think the Android project jpdroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package br.com.rafael.pedidojpdroid.dto; /*from ww w .j a v a 2 s . c o m*/ import br.com.rafael.jpdroid.annotations.Dto; import br.com.rafael.jpdroid.annotations.DtoField; @Dto public class ContatoDTO { @DtoField private long _id; @DtoField private String contato; public long get_id() { return _id; } public void set_id(long _id) { this._id = _id; } public String getContato() { return contato; } public void setContato(String contato) { this.contato = contato; } }