Package rcm.enumeration

Examples of rcm.enumeration.ArrayEnumeration


    /**
     * Enumerate the labels of the region.
     * @return enumeration producing label names
     */
    public Enumeration enumerateObjectLabels () {
        return names != null ? names.keys () : new ArrayEnumeration (null);
    }
View Full Code Here


    /**
     * Enumerate the HTML attributes found on this tag.
     * @return enumeration of the attribute names found on this tag.
     */
    public Enumeration enumerateHTMLAttributes () {
        return new ArrayEnumeration (htmlAttributes);
    }
View Full Code Here

TOP

Related Classes of rcm.enumeration.ArrayEnumeration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.