Examples of walk()


Examples of com.sun.jini.system.FileWalker.walk()

            System.exit(0);
        }
        FileWalker fileWalker = new FileWalker();
        FileObserver fileObserver = new FileObserver(suffix);
        fileWalker.addObserver(fileObserver);
        fileWalker.walk(startFD,recurse);
        return fileObserver.getFileList();
    }//end getFilesList

    /** Converts the elements of the given ArrayList from directory format
     *  to package format. If the rootDir is not null, strips off the
View Full Code Here

Examples of com.volantis.mcs.dom.DOMWalker.walk()

                        new OutputStyledElement(element, outputStyles);
                outputElementList.add(outputElement);
            }
        };
        DOMWalker walker = new DOMWalker(visitor);
        walker.walk(dom);
        return outputElementList;
    }

}
View Full Code Here

Examples of com.volantis.mcs.interaction.impl.ProxyWalker.walk()

        internalProxy.prepareForValidation();
    }

    public void prepare(Proxy proxy) {
        ProxyWalker walker = new ProxyWalker(this);
        walker.walk((InternalProxy) proxy);
    }
}

/*
===========================================================================
View Full Code Here

Examples of net.sf.jmd.transformation.ITreeWalker.walk()

       
        for (File file : modelFileList) {
            //TODO remove debug
//           LOGGER.info("parsing file: " + file.getAbsolutePath());
            AST ast = joda.getAST(file);// parse the file
            item = luke.walk(ast); // build a ModelItem from the AST
            result.addModelItem(item); // add it to the model
        }
       
        return result;
    }
View Full Code Here

Examples of org.ajax4jsf.component.UIDataAdaptor.walk()

      throws IOException {
    UIDataAdaptor table = (UIDataAdaptor) component;
    Object key = table.getRowKey();
    table.captureOrigValue(context);
   
    table.walk(context, this, tableHolder);
   
    doCleanup(context, tableHolder);
    table.setRowKey(key);
    table.restoreOrigValue(context);
  }
View Full Code Here

Examples of org.ajax4jsf.component.UIRepeat.walk()

          }

        }

      };
      repeater.walk(context, visitor, null);

    } finally {
      repeater.restoreOrigValue(context);
      repeater.setRowKey(null);
    }
View Full Code Here

Examples of org.ajax4jsf.model.ExtendedDataModel.walk()

          argument2.argument = argument;
          // setup current model
          argument2.model = model;
          argument2.range = range;
         
          scalarModel.walk(context, new DataVisitor() {

            public void process(FacesContext context,
                Object rowKey, Object argument)
                throws IOException {
View Full Code Here

Examples of org.antlr.v4.runtime.tree.ParseTreeWalker.walk()

    List<AutocompleteCandidate> q = new ArrayList<AutocompleteCandidate>();
         
    ImportDeclarationCompletion extractor = new ImportDeclarationCompletion(txt,cur,registry,cps,cu);
    NameBuilder extractor2 = new NameBuilder(registry,cu );
    NodeCompletion extractor3 = new NodeCompletion(txt,cur, registry, cu);
    walker.walk(extractor, t);
    if(extractor.getQuery()!=null)
      q.addAll(extractor.getQuery());
    walker.walk(extractor2, t);
    walker.walk(extractor3, t);
    if(extractor3.getQuery()!=null)
View Full Code Here

Examples of org.antlr.v4.runtime.tree.ParseTreeWalker.walk()

    NameBuilder extractor2 = new NameBuilder(registry,cu );
    NodeCompletion extractor3 = new NodeCompletion(txt,cur, registry, cu);
    walker.walk(extractor, t);
    if(extractor.getQuery()!=null)
      q.addAll(extractor.getQuery());
    walker.walk(extractor2, t);
    walker.walk(extractor3, t);
    if(extractor3.getQuery()!=null)
      q.addAll(extractor3.getQuery());
    List<String> ret = registry.searchCandidates(q);
View Full Code Here

Examples of org.antlr.v4.runtime.tree.ParseTreeWalker.walk()

    NodeCompletion extractor3 = new NodeCompletion(txt,cur, registry, cu);
    walker.walk(extractor, t);
    if(extractor.getQuery()!=null)
      q.addAll(extractor.getQuery());
    walker.walk(extractor2, t);
    walker.walk(extractor3, t);
    if(extractor3.getQuery()!=null)
      q.addAll(extractor3.getQuery());
    List<String> ret = registry.searchCandidates(q);

    // this shows the GUI
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.