MapListData.java
Go to the documentation of this file.
00001 package com.github.rosjava.android_apps.map_manager;
00002 
00003 public class MapListData {
00004 
00005         private String text = null;
00006         private boolean isChecked = false;
00007         private int id;
00008         
00009         public String getText() {
00010                 return text;
00011         }
00012         public int getId() {
00013                 return id;
00014         }
00015         
00016         public boolean isChecked() {
00017                 return isChecked;
00018         }
00019         
00020         public void setText(String text) {
00021                 this.text = text;
00022         }
00023         
00024         public void setId(int id) {
00025                 this.id = id;
00026         }
00027         
00028         public void setChecked(boolean isChecked) {
00029                 this.isChecked = isChecked;
00030         }
00031         
00032 }


android_apps
Author(s): Daniel Stonier , Kazuto Murase
autogenerated on Fri Aug 28 2015 10:04:40