Package org.fenixedu.academic.domain.organizationalStructure

Examples of org.fenixedu.academic.domain.organizationalStructure.Function


        }
        for (Accountability accountability : accs) {
            if (accountability.isActive(when.toYearMonthDay())) {
                if (relationFunctionType != null) {
                    if (accountability.getAccountabilityType() instanceof Function) {
                        Function function = (Function) accountability.getAccountabilityType();
                        if (!function.getFunctionType().equals(relationFunctionType)) {
                            continue;
                        }
                    } else {
                        continue;
                    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.organizationalStructure.Function

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.