Package helma.util

Examples of helma.util.EmptyEnumeration


    }

    private Enumeration getLoadedSubnodes() {
        final SubnodeList list = subnodes;
        if (list == null) {
            return new EmptyEnumeration();
        }

        return new Enumeration() {
            int pos = 0;
View Full Code Here


            // return the actually explicitly stored properties
            return propMap.keys();
        }

        // sorry, no properties for this Node
        return new EmptyEnumeration();
    }
View Full Code Here

TOP

Related Classes of helma.util.EmptyEnumeration

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.