Examples of INonScopedContainer


Examples of dtool.engine.common.INonScopedContainer

 
  public static void evaluateNodeForSearch(CommonDefUnitSearch search, boolean isSequentialLookup,
    boolean importsOnly, IASTNode node) {
   
    if(node instanceof INonScopedContainer) {
      INonScopedContainer container = ((INonScopedContainer) node);
      findDefUnits(search, container.getMembersIterator(), isSequentialLookup, importsOnly);
    }
    if(!importsOnly && node instanceof DefUnit) {
      DefUnit defunit = (DefUnit) node;
      evaluateDefUnitForSearch(search, defunit);
    }
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.