Delete Item.java
parent
922fe25f34
commit
5e3afaa5da
@ -1,48 +0,0 @@
|
||||
package com.hmkcode.android;
|
||||
|
||||
public class Item {
|
||||
|
||||
private int icon;
|
||||
private String title;
|
||||
private String counter;
|
||||
|
||||
private boolean isGroupHeader = false;
|
||||
|
||||
public Item(String title) {
|
||||
this(-1,title,null);
|
||||
isGroupHeader = true;
|
||||
}
|
||||
public Item(int icon, String title, String counter) {
|
||||
super();
|
||||
this.icon = icon;
|
||||
this.title = title;
|
||||
this.counter = counter;
|
||||
}
|
||||
public int getIcon() {
|
||||
return icon;
|
||||
}
|
||||
public void setIcon(int icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
public String getCounter() {
|
||||
return counter;
|
||||
}
|
||||
public void setCounter(String counter) {
|
||||
this.counter = counter;
|
||||
}
|
||||
public boolean isGroupHeader() {
|
||||
return isGroupHeader;
|
||||
}
|
||||
public void setGroupHeader(boolean isGroupHeader) {
|
||||
this.isGroupHeader = isGroupHeader;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue