package com.bigfat.scrollviewedittexttest;
/**
* Created by yueban on 26/7/15.
*/
public class Item {
private String title;
public Item(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}