Package org.libreplan.web.common

Examples of org.libreplan.web.common.MessagesForUser


        txtImportedLabel = (Textbox) editWindow
                .getFellowIfAny("txtImportedLabel");
        jiraGroupBox = (Groupbox) editWindow.getFellowIfAny("jiraGroupBox");
        syncWithJiraButton = (Button) editWindow
                .getFellow("syncWithJiraButton");
        messagesForUser = new MessagesForUser(messagesContainer);
    }
View Full Code Here


    private Listbox destinationScenarioOrders;

    @Override
    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        messagesForUser = new MessagesForUser(messagesContainer);
        comp.setVariable("transferOrdersController", this, true);

        sourceScenarioBandboxSearch.setListboxEventListener(Events.ON_CLICK,
                new EventListener() {
                    @Override
View Full Code Here

    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        comp.setAttribute("controller", this);

        setBreadcrumbs(comp);
        messagesForUser = new MessagesForUser(messagesContainer);

        checkUserComesFromEntryPointsOrSendForbiddenCode();

        URLHandlerRegistry.getRedirectorFor(IPersonalTimesheetController.class)
                .register(this, page);
View Full Code Here

    @Override
    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);

        messagesForUser = new MessagesForUser(messagesContainer);

        String timesheetSave = Executions.getCurrent().getParameter(
                "timesheet_saved");
        if (!StringUtils.isBlank(timesheetSave)) {
            String personalTimesheet = PersonalTimesheetDTO.toString(Registry
View Full Code Here

    protected Intbox orderElementTotalHours;

    @Override
    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        messagesForUser = new MessagesForUser(messagesContainer);
        comp.setVariable("assignedCriterionRequirementController", this, true);

        // init the resorcesType
        listResourceTypes.add(ResourceEnum.MACHINE);
        listResourceTypes.add(ResourceEnum.WORKER);
View Full Code Here

                comp, "editWindow");
        comp.setVariable("controller", this, true);
        if (messagesContainer == null) {
            throw new RuntimeException(_("MessagesContainer is needed"));
        }
        messages = new MessagesForUser(messagesContainer);
        setupResourcesCostCategoryAssignmentController(comp);

        getVisibility().showOnly(listWindow);
        initFilterComponent();
        setupFilterLimitingResourceListbox();
View Full Code Here

    @Override
    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        comp.setAttribute("controller", this);

        messagesForUser = new MessagesForUser(messagesContainer);
    }
View Full Code Here

    private Radio importAll;

    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        comp.setAttribute("projectImportController", this);
        messages = new MessagesForUser(messagesContainer);
    }
View Full Code Here

    @Override
    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        comp.setAttribute("controller", this);
        messagesForUser = new MessagesForUser(messagesContainer);
    }
View Full Code Here

    }

    @Override
    public void doAfterCompose(Component comp) throws Exception {
        super.doAfterCompose(comp);
        messagesForUser = new MessagesForUser(messagesContainer);
        getVisibility().showOnly(listWindow);

        final EntryPointsHandler<IOrderTemplatesControllerEntryPoints> handler = handlerRegistry
                .getRedirectorFor(IOrderTemplatesControllerEntryPoints.class);
        handler.register(this, page);
View Full Code Here

TOP

Related Classes of org.libreplan.web.common.MessagesForUser

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.