Examples of ImportedModuleReport


Examples of org.apache.easyant.core.report.ImportedModuleReport

            getProject().log(LINE_SEP + "No plugin specified. Listing all extension points available in the project.");

            List<ExtensionPointReport> extensionPoints = getEareport().getExtensionPointReports();
            printExtensionPoints(extensionPoints);
        } else {
            ImportedModuleReport importedModuleReport = getEareport().getImportedModuleReport(container);
            if (importedModuleReport != null) {
                getProject().log(LINE_SEP + "Extension-points for Module: " + container);
                printExtensionPoints(importedModuleReport.getEasyantReport().getExtensionPointReports());
            } else {
                getProject().log(LINE_SEP + "\tNo Module / Plugin found by name: " + container);
            }
        }
        getProject().log(
View Full Code Here

Examples of org.apache.easyant.core.report.ImportedModuleReport

           
        } else {
            getProject().log(
                    LINE_SEP + "--- Filtering properties declared in the following plugin: "
                            + plugin + " ---" + LINE_SEP);
            ImportedModuleReport moduleRep = getEareport().getImportedModuleReport(plugin);
            if (moduleRep == null) {
                getProject().log("\tNo Module / Plugin found by given name: " + plugin);
            } else {
                Map<String, PropertyDescriptor> allprops = moduleRep.getEasyantReport().getPropertyDescriptors();

                if (allprops.size() > 0) {
                    printProperties(allprops);

                    getProject().log(
View Full Code Here

Examples of org.apache.easyant.core.report.ImportedModuleReport

        } else {
            getProject().log(
                    LINE_SEP + "--- Filtering parameters declared in the following plugin: " + plugin + " ---"
                            + LINE_SEP);
            ImportedModuleReport moduleRep = getEareport().getImportedModuleReport(plugin);
            if (moduleRep == null) {
                getProject().log("\tNo Module / Plugin found by given name: " + plugin);
            } else {
                List<ParameterReport> parameterReports = moduleRep.getEasyantReport().getParameterReports();
                if (parameterReports.size() > 0) {
                    printParameters(parameterReports);

                    getProject().log(
                            LINE_SEP + LINE_SEP + "For more information on a parameter, run:" + LINE_SEP
View Full Code Here

Examples of org.apache.easyant.core.report.ImportedModuleReport

                printTargets(targets, getProject());
            } else {
                getProject().log("\tNo ExtensionPoint found by name: " + container);
            }

            ImportedModuleReport selectedModule = getEareport().getImportedModuleReport(container);
            if (selectedModule != null) {
                getProject().log(LINE_SEP + "Targets for Module: " + container);
                List<TargetReport> targets = selectedModule.getEasyantReport().getTargetReports();
                printTargets(targets, getProject());
            } else {
                getProject().log(LINE_SEP + "\tNo Module / Plugin found by name: " + container);
            }
View Full Code Here

Examples of org.apache.easyant.core.report.ImportedModuleReport

            return task;
        }
    }

    private void handleImport(Import importTask, EasyAntReport eaReport, String conf) throws Exception {
        ImportedModuleReport importedModuleReport = new ImportedModuleReport();

        importedModuleReport.setModuleMrid(importTask.getMrid());
        importedModuleReport.setOrganisation(importTask.getOrganisation());
        importedModuleReport.setModule(importTask.getModule());
        importedModuleReport.setRevision(importTask.getRevision());
        importedModuleReport.setMandatory(importTask.isMandatory());
        importedModuleReport.setMode(importTask.getMode());
        importedModuleReport.setAs(importTask.getAs());
        importedModuleReport
                .setEasyantReport(getPluginInfo(ModuleRevisionId.parse(importedModuleReport.getModuleMrid())));
        eaReport.addImportedModuleReport(importedModuleReport);

        Message.debug("Ant file import another module called : " + importedModuleReport.getModuleMrid() + " with mode "
                + importedModuleReport.getMode());
    }
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.