Package org.fenixedu.academic.dto.alumni.formation

Examples of org.fenixedu.academic.dto.alumni.formation.IFormation


    }

    @Override
    public Object provide(Object source, Object currentValue) {

        IFormation formation = (IFormation) source;
        int firstYear = formation.getFirstYear();

        int currentYear = new DateTime().year().get();
        Set<String> years = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER);
        do {
            years.add(String.valueOf(firstYear));
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.alumni.formation.IFormation

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.