Examples of Sources


Examples of org.netbeans.api.project.Sources

        if (project == null) {
            return null;
        }
        Set<File> set = new HashSet<File>();

        Sources sources = ProjectUtils.getSources(project);
        SourceGroup[] sourceGroups = sources.getSourceGroups(Sources.TYPE_GENERIC);
        for (int j = 0; j < sourceGroups.length; j++) {
            SourceGroup sourceGroup = sourceGroups[j];
            FileObject srcRootFo = sourceGroup.getRootFolder();
            File rootFile = FileUtil.toFile(srcRootFo);
            set.add(rootFile);
View Full Code Here

Examples of org.netbeans.api.project.Sources

                  }
                 
//                    projectRoot = selectedProject.getProjectDirectory().getPath() + "/";
                    logger.info("[OFF] fetching files from project " + projectRoot);

                    Sources s = ProjectUtils.getSources(selectedProject);
//                    s.addChangeListener(this);
                    SourceGroup[] groups = s.getSourceGroups(Sources.TYPE_GENERIC);

                    for (SourceGroup group : groups) {
                        FileObject folder = group.getRootFolder();
                        logger.info("[OFF] found source group: " + group.getName() + " (" + folder.getPath() + ")");
                        collectFiles(group, folder);
View Full Code Here

Examples of org.springframework.xd.integration.fixtures.Sources

  }

  @Bean
  public Sources sources() {
    // The Environment Assumes that the RabbitMQ broker is running on the same host as the admin server.
    return new Sources(xdEnvironment());

  }
View Full Code Here

Examples of soot.jimple.toolkits.callgraph.Sources

            // If the flow has changed, then add all the reachable
            // methods that invoke this method.
            if (!in.equals(out)) {
                _setEffectFlow(nextMethod, out);

                for (Iterator invokers = new Sources(callGraph
                        .edgesInto(nextMethod)); invokers.hasNext();) {
                    SootMethod invoker = (SootMethod) invokers.next();

                    if (_reachables.contains(invoker)) {
                        _addMethod(invoker);
                    }
                }
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.