Package com.webobjects.foundation

Examples of com.webobjects.foundation.NSMutableArray.objectEnumerator()


      if (_cachedComponentsByGlobalID == null) {
                _cachedComponents = new NSMutableArray();
                _cachedComponentsByGlobalID = new NSMutableDictionary();
        addChildrenOfComponentToArray(null, result, ec);
        int level = 0;
        for (Enumeration e = result.objectEnumerator(); e.hasMoreElements();) {
          Component component = (Component) e.nextElement();
          String sortOrder = (level < 10 ? "0" : "") + (level);
          _cachedComponentsByGlobalID.setObjectForKey(sortOrder, component.permanentGlobalID());
          _cachedComponents.addObject(component.permanentGlobalID());
          level++;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.