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; //from w w w. j av a 2 s .c om public class Size { private String slug; private int memory; private int cpu; private int disk; private int transfer; private double costPerHour; private double costPerMonth; public String getSlug() { return slug; } public void setSlug(String slug) { this.slug = slug; } public int getMemory() { return memory; } public void setMemory(int memory) { this.memory = memory; } public int getCpu() { return cpu; } public void setCpu(int cpu) { this.cpu = cpu; } public int getDisk() { return disk; } public void setDisk(int disk) { this.disk = disk; } public int getTransfer() { return transfer; } public void setTransfer(int transfer) { this.transfer = transfer; } public double getCostPerHour() { return costPerHour; } public void setCostPerHour(double costPerHour) { this.costPerHour = costPerHour; } public double getCostPerMonth() { return costPerMonth; } public void setCostPerMonth(double costPerMonth) { this.costPerMonth = costPerMonth; } }