home *** CD-ROM | disk | FTP | other *** search
- package hhapplet;
-
- class UsedItem {
- private int m_nBegin;
- private int m_nEnd;
- private UsedItem m_nNext;
-
- public int getEnd() {
- return this.m_nEnd;
- }
-
- public void setEnd(int var1) {
- this.m_nEnd = var1;
- }
-
- public UsedItem(int var1, int var2) {
- this.m_nBegin = var1;
- this.m_nEnd = var2;
- this.m_nNext = null;
- }
-
- public void setNext(UsedItem var1) {
- this.m_nNext = var1;
- }
-
- public UsedItem getNext() {
- return this.m_nNext;
- }
-
- public int getBegin() {
- return this.m_nBegin;
- }
-
- public void setBegin(int var1) {
- this.m_nBegin = var1;
- }
- }
-