Uses of Class
org.jtheque.books.persistence.od.AuthorImpl

Packages that use AuthorImpl
org.jtheque.books.persistence.dao.able Contains the data access objects specification. 
org.jtheque.books.persistence.dao.impl Contains the data access objects implementation. 
org.jtheque.books.persistence.od.abstraction Contains the data objects. 
org.jtheque.books.services.able Contains the services specification of the module. 
org.jtheque.books.services.impl Contains the services implementation of the module. 
org.jtheque.books.view.controllers.undo.create Contains the created edits. 
org.jtheque.books.view.controllers.undo.delete Contains the deleted edits. 
org.jtheque.books.view.fb Contains the formbeans. 
org.jtheque.books.view.models Contains the models of the view. 
org.jtheque.books.view.models.list Contains the list models of the view. 
 

Uses of AuthorImpl in org.jtheque.books.persistence.dao.able
 

Methods in org.jtheque.books.persistence.dao.able that return AuthorImpl
 AuthorImpl IDaoAuthors.getAuthor(int id)
          Return the author with the specified ID.
 AuthorImpl IDaoAuthors.getAuthor(String firstName, String name)
          Return the author with the specified ID.
 

Methods in org.jtheque.books.persistence.dao.able that return types with arguments of type AuthorImpl
 List<AuthorImpl> IDaoAuthors.getAuthors()
          Return all the Authors.
 

Methods in org.jtheque.books.persistence.dao.able with parameters of type AuthorImpl
 void IDaoAuthors.create(AuthorImpl author)
          Create the author.
 boolean IDaoAuthors.delete(AuthorImpl author)
          Delete the author.
 void IDaoAuthors.save(AuthorImpl author)
          Save the author.
 

Uses of AuthorImpl in org.jtheque.books.persistence.dao.impl
 

Methods in org.jtheque.books.persistence.dao.impl that return AuthorImpl
 AuthorImpl DaoAuthors.getAuthor(int id)
           
 AuthorImpl DaoAuthors.getAuthor(String firstName, String name)
           
 

Methods in org.jtheque.books.persistence.dao.impl that return types with arguments of type AuthorImpl
 List<AuthorImpl> DaoAuthors.getAuthors()
           
protected  org.springframework.jdbc.core.simple.ParameterizedRowMapper<AuthorImpl> DaoAuthors.getRowMapper()
           
 

Uses of AuthorImpl in org.jtheque.books.persistence.od.abstraction
 

Methods in org.jtheque.books.persistence.od.abstraction that return types with arguments of type AuthorImpl
 List<AuthorImpl> Book.getAuthors()
          Return the authors.
 

Method parameters in org.jtheque.books.persistence.od.abstraction with type arguments of type AuthorImpl
 void Book.setAuthors(List<AuthorImpl> authors)
          Set the authors of the book.
 

Uses of AuthorImpl in org.jtheque.books.services.able
 

Methods in org.jtheque.books.services.able that return AuthorImpl
 AuthorImpl IAuthorsService.getAuthor(String firstname, String name)
          Return the author denoted by this firstname and name.
 AuthorImpl IAuthorsService.getEmptyAuthor()
          Return an empty actor.
 

Methods in org.jtheque.books.services.able that return types with arguments of type AuthorImpl
 List<AuthorImpl> IAuthorsService.getAuthors()
          Return all the authors.
 

Methods in org.jtheque.books.services.able with parameters of type AuthorImpl
 void IAuthorsService.create(AuthorImpl author)
          Create the author.
 boolean IAuthorsService.delete(AuthorImpl author)
          Delete the author.
 void IAuthorsService.save(AuthorImpl author)
          Save the author.
 

Uses of AuthorImpl in org.jtheque.books.services.impl
 

Methods in org.jtheque.books.services.impl that return AuthorImpl
 AuthorImpl AuthorsService.getAuthor(String firstname, String name)
           
 AuthorImpl AuthorsService.getEmptyAuthor()
           
 

Methods in org.jtheque.books.services.impl that return types with arguments of type AuthorImpl
 List<AuthorImpl> AuthorsService.getAuthors()
           
 List<AuthorImpl> AuthorsService.getDatas()
           
 

Methods in org.jtheque.books.services.impl with parameters of type AuthorImpl
 void AuthorsService.create(AuthorImpl author)
           
 boolean AuthorsService.delete(AuthorImpl author)
           
 void AuthorsService.save(AuthorImpl author)
           
 

Uses of AuthorImpl in org.jtheque.books.view.controllers.undo.create
 

Constructors in org.jtheque.books.view.controllers.undo.create with parameters of type AuthorImpl
CreatedAuthorEdit(AuthorImpl author)
          Construct a new CreatedAuthorEdit.
 

Uses of AuthorImpl in org.jtheque.books.view.controllers.undo.delete
 

Constructors in org.jtheque.books.view.controllers.undo.delete with parameters of type AuthorImpl
DeletedAuthorEdit(AuthorImpl author)
          Construct a new DeleteAuthorEdit.
 

Uses of AuthorImpl in org.jtheque.books.view.fb
 

Methods in org.jtheque.books.view.fb that return types with arguments of type AuthorImpl
 List<AuthorImpl> BookFormBean.getAuthors()
          Return the authors.
 

Method parameters in org.jtheque.books.view.fb with type arguments of type AuthorImpl
 void BookFormBean.setAuthors(List<AuthorImpl> authors)
          Set the authors of the book.
 

Uses of AuthorImpl in org.jtheque.books.view.models
 

Methods in org.jtheque.books.view.models that return AuthorImpl
 AuthorImpl AuthorsModel.getCurrentAuthor()
          Return the current author.
 

Methods in org.jtheque.books.view.models that return types with arguments of type AuthorImpl
 List<AuthorImpl> AuthorsModel.getDisplayList()
          Return the display list.
 

Methods in org.jtheque.books.view.models with parameters of type AuthorImpl
 void AuthorsModel.setCurrentAuthor(AuthorImpl currentAuthor)
          Set the current book.
 

Uses of AuthorImpl in org.jtheque.books.view.models.list
 

Methods in org.jtheque.books.view.models.list that return types with arguments of type AuthorImpl
 List<AuthorImpl> SimpleAuthorsModel.getAuthors()
          Return all the authors.
 



Copyright © 2009 JTheque. All Rights Reserved.