edu.utexas.its.eis.tools.qwicap.template.xml
Interface AttributeEnumeration

All Superinterfaces:
Enumeration<Attribute>, Iterator<Attribute>

public interface AttributeEnumeration
extends Enumeration<Attribute>, Iterator<Attribute>

The AttributeEnumeration interface defines the basic functionality required from all of the various enumerators that provide access to the attributes of XML tags that can contain attributes.

Author:
Chris W. Johnson

Method Summary
 boolean hasMoreAttributes()
           
 Attribute nextAttribute()
           
 int size()
          Returns the number of attributes that this enumeration represents.
 
Methods inherited from interface java.util.Enumeration
hasMoreElements, nextElement
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

size

int size()
Returns the number of attributes that this enumeration represents.

Returns:
The number of attributes that this enumeration represents.

hasMoreAttributes

boolean hasMoreAttributes()

nextAttribute

Attribute nextAttribute()
                        throws NoSuchElementException
Throws:
NoSuchElementException