Back to project page robobook.
The source code is released under:
MIT License
If you think the Android project robobook 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.krazyrobot.robobook.model; /*from w ww . j av a 2 s.c o m*/ public class Robot { private String mName; private int mImgRes; public Robot(String name, int imageRes) { mName = name; mImgRes = imageRes; } public String getmName() { return mName; } public void setmName(String mName) { this.mName = mName; } public int getmImgRes() { return mImgRes; } public void setmImgRes(int mImgRes) { this.mImgRes = mImgRes; } }