Back to project page PodioPuzzle.
The source code is released under:
Apache License
If you think the Android project PodioPuzzle 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.podio.podiopuzzle.model; // ww w . j av a 2 s . c om /** * Created by goman on 10/29/2014. */ public class WorkspaceEntity { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }