Package kirjastox.model

Examples of kirjastox.model.BooksDataAccessObject


    // Private constructor prevents instantiation from other classes
    private DataSingletonController(){
        this.appInfoMessage ="Tervetuloa Kirjasto-sovellukseen.";

        BooksDataAccessObject booksPersistentData = new BooksDataAccessObject();           
        books = FXCollections.observableArrayList(booksPersistentData.getAll());
       
        AudioRecordsDataAccessObject audioRecordsPersistentData = new AudioRecordsDataAccessObject();
        audioRecords = FXCollections.observableArrayList(audioRecordsPersistentData.getAll());
       
        CustomersDataAccessObject customersPersistentData = new CustomersDataAccessObject();
View Full Code Here


    }
   
    /* Apumetodit tietovaraston tilan oäivittämiseen, nämä on vain siirretty muista ohjaimista tänne*/
    public void updateBooksPersistentStore(){
        // Tässä päivitetään ja tallennetaan muutokset tiedostoon
        BooksDataAccessObject booksPersistentData = new BooksDataAccessObject();
        ArrayList<Book> updatedBooks = new ArrayList<Book>(books);
        booksPersistentData.updateAll(updatedBooks);
        booksPersistentData.save();
    }
View Full Code Here

TOP

Related Classes of kirjastox.model.BooksDataAccessObject

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.