Package net.rim.tumbler.file.Library

Examples of net.rim.tumbler.file.Library.Platform


 
  private void processPlatformsNode(Node platformsNode) {
    NodeList childNodes = platformsNode.getChildNodes();
   
    for (int i = 0; i < childNodes.getLength(); i++) {
      Platform p = processPlatformNode(childNodes.item(i));
     
      if (p != null) {
        _library.addPlatform(p);
      }
    }
View Full Code Here


     
      if (attrs != null) {
        Node valueAttr = attrs.getNamedItem(ATTR_VALUE);

        if (valueAttr != null) {
          Platform platform = new Platform(valueAttr.getNodeValue());
          NodeList childNodes = platformNode.getChildNodes();

          for (int i = 0; i < childNodes.getLength(); i++) {
            Target target = processTargetNode(childNodes.item(i));

            if (target != null) {
              platform.addTarget(target);
            }
          }

          return platform;
        }
View Full Code Here

TOP

Related Classes of net.rim.tumbler.file.Library.Platform

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.