mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
アイコンIDを追加
This commit is contained in:
parent
f833465dc8
commit
5dcb27a2e9
|
@ -1,4 +1,17 @@
|
||||||
package one.nem.lacerta.model;
|
package one.nem.lacerta.model;
|
||||||
|
|
||||||
public enum ListItemType {
|
public enum ListItemType {
|
||||||
|
|
||||||
|
ITEM_TYPE_FOLDER(one.nem.lacerta.shared.ui.R.drawable.folder_24px),
|
||||||
|
ITEM_TYPE_DOCUMENT(one.nem.lacerta.shared.ui.R.drawable.description_24px);
|
||||||
|
|
||||||
|
private int iconId;
|
||||||
|
|
||||||
|
ListItemType(int iconId) {
|
||||||
|
this.iconId = iconId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getIconId() {
|
||||||
|
return iconId;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user