Examples of process()


Examples of org.evolizer.famix.importer.unresolved.UnresolvedInvocationHandler.process()

            // process unresolved method calls
            if ((projectParser.getModel() != null) && (status.getSeverity() == IStatus.OK)) {
                UnresolvedInvocationHandler unresolvedInvocationHandler =
                        new UnresolvedInvocationHandler(projectParser.getModel(), projectParser
                                .getUnresolvedCalls());
                status = unresolvedInvocationHandler.process(progress.newChild(20));
                if (status.getSeverity() == IStatus.OK) {
                    status = unresolvedInvocationHandler.addInvocations(progress.newChild(10));
                }
                if (status.getSeverity() == IStatus.OK) {
                    FamixImporterPlugin.getDefault().setUnresolvedInvocationHandler(
View Full Code Here

Examples of org.exist.atom.AtomModule.process()

      // Handle the resource
      DBBroker broker = null;
      try {
        broker = pool.get(user);
        module.process(broker, new HttpRequestMessage(request, path,
            '/' + moduleName), new HttpResponseMessage(response));

      } catch (final NotFoundException ex) {
        getLog().info(
            "Resource " + path + " not found by " + moduleName, ex);
View Full Code Here

Examples of org.fcrepo.client.batch.BatchTool.process()

            System.setErr(printStream);
            batchOutput.setVisible(true);
            BatchTool batchTool =
                    new BatchTool(properties, nullProperties, nullProperties);
            batchTool.prep();
            batchTool.process();
        } catch (Exception e) {
        } finally {
            System.setOut(originalOut);
            originalOut = null;
            System.setErr(originalErr);
View Full Code Here

Examples of org.fenixedu.academic.domain.accounting.Event.process()

            logger.warn("Event " + event.getExternalId() + " for person " + event.getPerson().getExternalId() + " is cancelled");
            logger.warn("Code Number: " + getCode());
            logger.warn("################################################################################################");
        }

        event.process(person.getUser(), this, amount, new SibsTransactionDetailDTO(whenRegistered, sibsTransactionId, getCode(),
                comments));
    }

    @Override
    public void delete() {
View Full Code Here

Examples of org.fenixedu.academic.domain.accounting.PaymentCode.process()

        if (codeToProcess.isProcessed() && codeToProcess.getWhenUpdated().isBefore(detailLine.getWhenOccuredTransaction())) {
            result.addMessage("warning.manager.SIBS.codeAlreadyProcessed", codeToProcess.getCode());
        }

        codeToProcess.process(person, detailLine.getAmount(), detailLine.getWhenOccuredTransaction(),
                detailLine.getSibsTransactionId(), StringUtils.EMPTY);

    }

    private void createSibsFileReport(SibsIncommingPaymentFile sibsIncomingPaymentFile, ProcessResult result) throws Exception {
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.debts.ExternalScholarshipPhdGratuityContribuitionEvent.process()

                        .getAttribute("externalId") : exemptionId);
        ExternalScholarshipPhdGratuityContribuitionEvent event = exemption.getExternalScholarshipPhdGratuityContribuitionEvent();
        AmountBean bean = getRenderedObject("bean");
        List<EntryDTO> list = new ArrayList<EntryDTO>();
        list.add(new EntryDTO(EntryType.EXTERNAL_SCOLARSHIP_PAYMENT, event, bean.getValue()));
        event.process(Authenticate.getUser(), list, new AccountingTransactionDetailDTO(bean.getPaymentDate(), PaymentMode.CASH));

        PhdGratuityEvent gratuityEvent = (PhdGratuityEvent) exemption.getEvent();
        PhdIndividualProgramProcess process = gratuityEvent.getPhdIndividualProgramProcess();
        request.setAttribute("processId", process.getExternalId());
View Full Code Here

Examples of org.fenixedu.academic.domain.serviceRequests.RegistrationAcademicServiceRequest.process()

            HttpServletRequest request, HttpServletResponse response) throws FenixServiceException {

        final RegistrationAcademicServiceRequest academicServiceRequest = getAndSetAcademicServiceRequest(request);

        try {
            academicServiceRequest.process();
            addActionMessage(request, "academic.service.request.processed.with.success");
        } catch (DomainException ex) {
            addActionMessage(request, ex.getKey(), ex.getArgs());
            request.setAttribute("failingCondition", ex.getKey());
            return mapping.findForward("prepareRejectAcademicServiceRequest");
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.teacher.siteArchive.Fetcher.process()

            fetcher.queue(new Resource(group.getGroupNumber() + getStudentsISTID(group) + "/"
                    + submission.getProjectSubmissionFile().getFilename(), submission.getProjectSubmissionFile().getDownloadUrl()));
        }

        fetcher.process();
        archive.finish();

        return null;
    }
View Full Code Here

Examples of org.foray.core.FOraySession.process()

        //Setup FOrayTarget
        new FOrayTarget(document, renderer, null, out);

        // Start the processing.
        session.process();
    }

    /**
     * Command-line interface to this class.
     * @param args The command-line arguments. None are currently supported.
View Full Code Here

Examples of org.foray.ps.PsInterpreter4a.process()

        final File file = new File(this.fileName);
        PsInputFile eps = null;
        eps = new PsInputFile(file);
        final Java2DSystemDict j2dSystemDict = new Java2DSystemDict(g2d);
        final PsInterpreter4a interpreter = new PsInterpreter4a(eps, j2dSystemDict);
        interpreter.process();
        g2d.setTransform(baktrans);
    }

}
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.