Uses of Class
NTNU.IDATT1002.repository.Page
| Package | Description |
|---|---|
| NTNU.IDATT1002.controllers |
Controllers providing interaction with views and services.
|
| NTNU.IDATT1002.repository |
DAO classes defined as repositories for persisting data.
|
| NTNU.IDATT1002.service |
Service classes providing high level behaviour,
connecting the controllers with the business logic.
|
-
Uses of Page in NTNU.IDATT1002.controllers
Methods in NTNU.IDATT1002.controllers that return types with arguments of type Page Modifier and Type Method Description protected javafx.concurrent.Task<Page<T>>PaginatedContent. getPageTaskFor(int pageNumber)Return aTaskfor fetching and updating the current page with given page number and specified page size.Methods in NTNU.IDATT1002.controllers with parameters of type Page Modifier and Type Method Description java.util.List<ImageRow>Explore. getContentsFrom(Page<Image> page)java.util.List<javafx.scene.layout.HBox>ExploreAlbums. getContentsFrom(Page<Album> page)Uses computeRooAlbumsContainer to return a list og Hboxes with Page as parameter the getContent() gives us the specific content for the page we needprotected abstract java.util.List<? extends javafx.scene.Node>PaginatedContent. getContentsFrom(Page<T> page)Method parameters in NTNU.IDATT1002.controllers with type arguments of type Page Modifier and Type Method Description protected javafx.event.EventHandler<javafx.concurrent.WorkerStateEvent>PaginatedContent. pageChanged(javafx.concurrent.Task<Page<T>> newPageTask, javafx.scene.layout.VBox pageContentContainer)Define actions to take when the page changes. -
Uses of Page in NTNU.IDATT1002.repository
Methods in NTNU.IDATT1002.repository that return Page Modifier and Type Method Description Page<T>PagingAndSortingRepository. findAll(PageRequest pageRequest)Find all entities specified by givenPageRequest. -
Uses of Page in NTNU.IDATT1002.service
Methods in NTNU.IDATT1002.service that return Page Modifier and Type Method Description Page<Album>AlbumService. findAll(PageRequest pageRequest)Retrieve paginated results specified by givenPageRequest.Page<Image>ImageService. findAll(PageRequest pageRequest)Retrieve paginated results specified by givenPageRequest.Page<T>PageableService. findAll(PageRequest pageRequest)Find all entities on page matching givenPageRequest.