00036 { 00037 mCurrent = attrList; 00038 }
00041 { 00042 boolean rslt = mCurrent != null; 00043 return rslt; 00044 }
00048 { 00049 if (mCurrent != null) { 00050 Attribute attr = mCurrent; 00051 mCurrent = mCurrent.getNext(); 00052 return attr; 00053 } 00054 else { 00055 throw new NoSuchElementException(); 00056 } 00057 }
00061 { 00062 throw new UnsupportedOperationException(); 00063 }
[private]