Back to project page digital-ocean-swimmer.
The source code is released under:
MIT License
If you think the Android project digital-ocean-swimmer 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.yassirh.digitalocean.model; /*w ww . j av a2s . c om*/ public class Region { private String name; private String slug; private Boolean available; private String features; public Region(){ } public Region(String name, String slug, Boolean available, String features) { this.name = name; this.slug = slug; this.available = available; this.features = features; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSlug() { return slug; } public void setSlug(String slug) { this.slug = slug; } public Boolean isAvailable(){ return available; } public void setAvailable(boolean available) { this.available = available; } public String getFeatures() { return features; } public void setFeatures(String features) { this.features = features; } }