Package javax.faces.component

Examples of javax.faces.component.UISelectItems


        getViewState().setAttribute("selectedDepartmentUnitID", selectedDepartmentUnitID);
    }

    public UISelectItems getDegreeItems() {
        if (degreeItems == null) {
            degreeItems = new UISelectItems();
            degreeItems.setValue(readBolonhaDegrees(getSelectedCurricularRuleType(), getSelectedDegreeType()));
        }
        return degreeItems;
    }
View Full Code Here


        return result;
    }

    public UISelectItems getDepartmentUnitItems() {
        if (departmentUnitItems == null) {
            departmentUnitItems = new UISelectItems();
            departmentUnitItems.setValue(readDepartmentUnits(getSelectedCurricularRuleType()));
        }
        return departmentUnitItems;
    }
View Full Code Here

        getViewState().setAttribute("endExecutionPeriodID", endExecutionPeriodID);
    }

    public UISelectItems getBeginExecutionPeriodItemsForRule() {
        if (beginExecutionPeriodItemsForRule == null) {
            beginExecutionPeriodItemsForRule = new UISelectItems();
            beginExecutionPeriodItemsForRule.setValue(readExecutionPeriodItems());
        }
        return beginExecutionPeriodItemsForRule;
    }
View Full Code Here

        this.beginExecutionPeriodItemsForRule = beginExecutionPeriodItemsForRule;
    }

    public UISelectItems getEndExecutionPeriodItemsForRule() {
        if (endExecutionPeriodItemsForRule == null) {
            endExecutionPeriodItemsForRule = new UISelectItems();
            final List<SelectItem> values = new ArrayList<SelectItem>(readExecutionPeriodItems());
            values.add(0, new SelectItem(NO_SELECTION_STRING, BundleUtil.getString(Bundle.BOLONHA, "opened")));
            endExecutionPeriodItemsForRule.setValue(values);
        }
        return endExecutionPeriodItemsForRule;
View Full Code Here

        return getCompetenceCourse().getCompetenceCourseGroupUnit(getExecutionSemester()).getName();
    }

    public UISelectItems getDepartmentUnitItems() {
        if (departmentUnitItems == null) {
            departmentUnitItems = new UISelectItems();
            departmentUnitItems.setValue(readDepartmentUnitLabels());
        }
        return departmentUnitItems;
    }
View Full Code Here

        return result;
    }

    public UISelectItems getScientificAreaUnitItems() {
        if (scientificAreaUnitItems == null) {
            scientificAreaUnitItems = new UISelectItems();
            scientificAreaUnitItems.setValue(readScientificAreaUnitLabels(getTransferToDepartmentUnitID()));
        }
        return scientificAreaUnitItems;
    }
View Full Code Here

        return (DepartmentUnit) FenixFramework.getDomainObject(transferToDepartmentUnitID);
    }

    public UISelectItems getCompetenceCourseGroupUnitItems() {
        if (competenceCourseGroupUnitItems == null) {
            competenceCourseGroupUnitItems = new UISelectItems();
            competenceCourseGroupUnitItems.setValue(readCompetenceCourseGroupUnitLabels(getTransferToScientificAreaUnitID()));
        }
        return competenceCourseGroupUnitItems;
    }
View Full Code Here

        reset();
    }

    public UISelectItems getExecutionSemesterItems() {
        if (executionSemesterItems == null) {
            executionSemesterItems = new UISelectItems();
            executionSemesterItems.setValue(readExecutionSemesterLabels());
        }
        return executionSemesterItems;
    }
View Full Code Here

        return result;
    }

    public UISelectItems getFutureExecutionSemesterItems() {
        if (futureExecutionSemesterItems == null) {
            futureExecutionSemesterItems = new UISelectItems();
            futureExecutionSemesterItems.setValue(readFutureExecutionSemesterLabels());
        }
        return futureExecutionSemesterItems;
    }
View Full Code Here

        return result;
    }

    public UISelectItems getCompetenceCourseExecutionSemesters() {
        if (competenceCourseExecutionSemesters == null) {
            competenceCourseExecutionSemesters = new UISelectItems();
            competenceCourseExecutionSemesters.setValue(readCompetenceCourseExecutionSemesterLabels());
        }
        return competenceCourseExecutionSemesters;
    }
View Full Code Here

TOP

Related Classes of javax.faces.component.UISelectItems

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.