Package business

Examples of business.BookSubject


        return user;
    }

    public ArrayList<BookSubject> getSubjects() {
        ArrayList<BookSubject> subjects = new ArrayList<BookSubject>();
        BookSubject subject;
        String[] orderBy = { "text ASC" };
        ResultSet result = driver.select( "booksubject", null, null, null, null, null, orderBy, 0, 0 );

        try {
            while( result.next() ) {
                subject = new BookSubject();
                subject.init( driver );
                subject.populate( result );
                subject.setI18nText( lexicon.get( subject.getText() ) );
                subjects.add( subject );
            }
        } catch( SQLException e ) {

        }
View Full Code Here

TOP

Related Classes of business.BookSubject

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.