home *** CD-ROM | disk | FTP | other *** search
- package javax.naming.directory;
-
- import java.util.Enumeration;
- import javax.naming.NamingEnumeration;
- import javax.naming.NamingException;
-
- class BasicAttribute$ValuesEnumImpl implements NamingEnumeration {
- Enumeration list;
- // $FF: synthetic field
- private final BasicAttribute this$0;
-
- BasicAttribute$ValuesEnumImpl(BasicAttribute var1) {
- this.this$0 = var1;
- this.list = var1.values.elements();
- }
-
- public boolean hasMoreElements() {
- return this.list.hasMoreElements();
- }
-
- public Object nextElement() {
- return this.list.nextElement();
- }
-
- public Object next() throws NamingException {
- return this.list.nextElement();
- }
-
- public boolean hasMore() throws NamingException {
- return this.list.hasMoreElements();
- }
-
- public void close() throws NamingException {
- this.list = null;
- }
- }
-