Package org.netbeans.gradle.project

Examples of org.netbeans.gradle.project.ProjectInfo


            List<ProjectInfo.Entry> entries = new ArrayList<>(issues.size());
            for (DependencyResolutionIssue issue: issues) {
                entries.add(new ProjectInfo.Entry(ProjectInfo.Kind.ERROR, issue.getMessage()));
            }

            dependencyResolutionFailureRef.setInfo(new ProjectInfo(entries));
            ModelLoadIssueReporter.reportDependencyResolutionFailures(issues);
        }
        else {
            dependencyResolutionFailureRef.setInfo(null);
        }
View Full Code Here


            List<ProjectInfo.Entry> infos = new LinkedList<>();
            for (File missingDep: missing) {
                infos.add(new ProjectInfo.Entry(ProjectInfo.Kind.WARNING,
                        NbStrings.getInvalidClassPathEntry(missingDep.getPath())));
            }
            getInfoRef().setInfo(new ProjectInfo(infos));
        }

        updateAllSources();

        SwingUtilities.invokeLater(new Runnable() {
View Full Code Here

TOP

Related Classes of org.netbeans.gradle.project.ProjectInfo

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.