Package dao.tro

Examples of dao.tro.AirportNameAsc


    }

    @Override
    public int doEndTag() throws JspException {
        ArrayList<Airport> airportList= (ArrayList<Airport>) DAOFactory.getDAOFactory(1).getAirportDAO().airportList(airportCount);
        Collections.sort(airportList, new AirportNameAsc());
        for (Airport airport: airportList) {
            try {
                pageContext.setAttribute("singleAirport", airport, PageContext.REQUEST_SCOPE);
                pageContext.include("../Templates/Airport.jsp");
            } catch (ServletException | IOException e) {
View Full Code Here

TOP

Related Classes of dao.tro.AirportNameAsc

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.