mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
cleanup
This commit is contained in:
parent
ca37a97e2f
commit
4b0ea02f16
|
@ -70,35 +70,4 @@ public class XmlMetaModel {
|
||||||
this.pages = pages;
|
this.pages = pages;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public Methods
|
|
||||||
|
|
||||||
public void addPage(XmlMetaPageModel page) {
|
|
||||||
this.pages.add(page);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addPageAfterIndex(int index, XmlMetaPageModel page) {
|
|
||||||
this.pages.add(index, page);
|
|
||||||
|
|
||||||
//Update index
|
|
||||||
this.updateIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void removePage(XmlMetaPageModel page) {
|
|
||||||
this.pages.remove(page);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void removePageAtIndex(int index) {
|
|
||||||
this.pages.remove(index);
|
|
||||||
|
|
||||||
//Update index
|
|
||||||
this.updateIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Internal Methods
|
|
||||||
private void updateIndex() { // TODO-rca: 効率悪そう
|
|
||||||
for (int i = 0; i < this.pages.size(); i++) {
|
|
||||||
this.pages.get(i).setIndex(i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user