Back to project page Dumbledroid.
The source code is released under:
Copyright (c) 2013, Leocadio Tin? All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project Dumbledroid 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 io.leocad.dumbledoreexample.models; /* w w w. j a va 2s. c om*/ import java.io.Serializable; public class Suit implements Serializable { private static final long serialVersionUID = 3422767378715300945L; private String color; private boolean cloak; public String getColor() { return color; } public void setColor(String color) { this.color = color; } public boolean hasCloak() { return cloak; } public void setCloak(boolean cloak) { this.cloak = cloak; } }