Package | Description |
---|---|
org.sourceforge.vlibrary.user.dao | |
org.sourceforge.vlibrary.user.forms | |
org.sourceforge.vlibrary.user.logic |
Modifier and Type | Method and Description |
---|---|
ArrayList<Author> |
BookDAO.getAuthors(Book book)
Returns an ArrayList consisting of the authors of the given book.
|
Modifier and Type | Method and Description |
---|---|
void |
BookDAO.addAuthor(Book book,
Author author)
Adds
author to the authors of book . |
Long |
AuthorDAOSpringJDBCImpl.findAuthorByFirstLastName(Author author) |
Long |
AuthorDAO.findAuthorByFirstLastName(Author author)
Finds the id of the given
Author object in the database,
using the firstName and lastName properties
to lookup the record. |
void |
AuthorDAOSpringJDBCImpl.insert(Author author) |
void |
AuthorDAO.insert(Author author)
Inserts the given author into the database.
|
void |
AuthorDAOSpringJDBCImpl.insertNewAuthor(Author author)
Insert a new Author into the DB.
|
Modifier and Type | Method and Description |
---|---|
void |
BookDAO.setAuthors(Book book,
ArrayList<Author> authors)
Sets the list of authors associated with the given book.
|
Modifier and Type | Method and Description |
---|---|
ArrayList<Author> |
BookForm.getAuthors() |
Modifier and Type | Method and Description |
---|---|
void |
BookForm.setAuthors(ArrayList<Author> authors) |
Modifier and Type | Method and Description |
---|---|
ArrayList<Author> |
LibraryManager.getAuthors(Book book)
Returns an ArrayList of Author} instances including the authors
of the given book.
|
Modifier and Type | Method and Description |
---|---|
void |
LibraryManager.createAuthorIds(ArrayList<Author> authors)
Walks input ArrayList, looking up and setting ID properties for
each Author in the list.
|
Book |
LibraryManager.createBook(Book book,
ArrayList<Subject> subjects,
ArrayList<Author> authors)
Creates a book in the database and associates the given lists of
subjects and authors with the book.
|
void |
LibraryManager.createBookAuthors(Book book,
ArrayList<Author> authors)
Sets the authors for the given book.
|
Copyright © 2003-2017 The Virtual Library Team. All Rights Reserved.