54 lines
1.0 KiB
Java
54 lines
1.0 KiB
Java
package ch.pizzalink.android.model;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
/**
|
|
* Created by cimenmus on 17/10/2017.
|
|
*/
|
|
|
|
public class ShippingMethodModel {
|
|
|
|
private String name;
|
|
private String price;
|
|
private boolean isSelected;
|
|
|
|
public ShippingMethodModel(String name, String price) {
|
|
this.name = name;
|
|
this.price = price;
|
|
}
|
|
|
|
private void checkNull(){
|
|
|
|
}
|
|
|
|
public static void checkNull(ArrayList<ShippingMethodModel> shippingMethodList){
|
|
for(ShippingMethodModel shippingMethodModel : shippingMethodList){
|
|
shippingMethodModel.checkNull();
|
|
}
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(String price) {
|
|
this.price = price;
|
|
}
|
|
|
|
public boolean isSelected() {
|
|
return isSelected;
|
|
}
|
|
|
|
public void setSelected(boolean selected) {
|
|
isSelected = selected;
|
|
}
|
|
}
|