Package org.fenixedu.academic.api.beans.publico.FenixSpace

Examples of org.fenixedu.academic.api.beans.publico.FenixSpace.Room


        public void setRooms(Set<Space> rooms) {
            this.rooms = FluentIterable.from(rooms).transform(new Function<Space, FenixSpace.Room>() {

                @Override
                public Room apply(Space input) {
                    return new Room(input, false, true, null);
                }
            }).toList();
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.api.beans.publico.FenixSpace.Room

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.