Package kirjastox.model

Examples of kirjastox.model.Book


        customersPersistentData.save();
    }
   
    public void setBookReturned(Book returningBook){
        int bookIndex = this.getBooks().indexOf(returningBook);
        Book bookTitle = this.getBooks().get(bookIndex);
        bookTitle.incrementUnitsAvailable();
       
        this.updateBooksPersistentStore();
    }
View Full Code Here

TOP

Related Classes of kirjastox.model.Book

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.