Back to project page dexedd.
The source code is released under:
MIT License
If you think the Android project dexedd 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 com.nav.dexedd.model; /*from w ww . j av a 2 s . c om*/ /** * Location model * * @author Eduardo Naveda * @since 0.0.1 */ public class Location { private Integer id; private String name; private Region region; public Location() {} public Location(Integer id, String name, Region region) { this.id = id; this.name = name; this.region = region; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Region getRegion() { return region; } public void setRegion(Region region) { this.region = region; } }