Back to project page android-gps-.
The source code is released under:
Apache License
If you think the Android project android-gps- 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.droid.waterhub; //from w w w . ja v a 2 s. c o m public class InfoStor { public String catName; private Integer img_tag; private Integer memory; public InfoStor (String name) { catName = name; } String getName(){ return catName; } void setImageTag(Integer img_tag){ img_tag = img_tag; } Integer getImageTag(){ return img_tag; } void setMemory(Integer m){ memory = m; } Integer getMemory(){ return memory; } }