mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-04-26 06:15:04 +00:00
Mocked List Adder
This commit is contained in:
@@ -83,14 +83,16 @@ public class List {
|
||||
return uiPosition;
|
||||
}
|
||||
|
||||
public void setUiPosition(Integer uiPosition) {
|
||||
this.uiPosition = uiPosition;
|
||||
|
||||
public ItemEntry[] getEntries() {
|
||||
return entries.toArray(new ItemEntry[entries.size()]);
|
||||
}
|
||||
|
||||
public void addItemEntry(ItemEntry entry) {
|
||||
entries.add(entry);
|
||||
}
|
||||
// public void setUiPosition(Integer uiPosition) {
|
||||
// this.uiPosition = uiPosition;
|
||||
//
|
||||
// public ItemEntry[] getEntries() {
|
||||
// //return entries.toArray(new ItemEntry[entries.size()]);
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// public void addItemEntry(ItemEntry entry) {
|
||||
// //entries.add(entry);
|
||||
// return;
|
||||
// }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user