Package Roots
Class SceneRoot
- java.lang.Object
-
- Roots.SceneRoot
-
- Direct Known Subclasses:
AlbumDetailsRoot,AlbumsRoot,DeleteUserRoot,LoginRoot,MapRoot,MenuRoot,PhotosRoot,SignUpRoot,UploadRoot
public abstract class SceneRoot extends java.lang.ObjectClass that has the basic structure of each root used in the application All other root classes extends this class
-
-
Field Summary
Fields Modifier and Type Field Description private javafx.scene.layout.BorderPaneborderPaneprivate javafx.scene.layout.GridPanegridPaneprivate Headerheader
-
Constructor Summary
Constructors Constructor Description SceneRoot()SceneRoot constructor, used by all its subclasses
-
Method Summary
Modifier and Type Method Description javafx.scene.layout.BorderPanegetBorderPane()(package private) javafx.scene.layout.GridPanegetGridPane()(package private) voidsetGridPane()SetGridPane void, sets padding and alignment for the grid pane(package private) voidsetLayout()Sets the basic layout of the application(package private) voidsetPageTitle(java.lang.String title)
-
-
-
Field Detail
-
header
private Header header
-
borderPane
private javafx.scene.layout.BorderPane borderPane
-
gridPane
private javafx.scene.layout.GridPane gridPane
-
-
Method Detail
-
setPageTitle
void setPageTitle(java.lang.String title)
-
getBorderPane
public javafx.scene.layout.BorderPane getBorderPane()
-
getGridPane
javafx.scene.layout.GridPane getGridPane()
-
setGridPane
void setGridPane()
SetGridPane void, sets padding and alignment for the grid pane
-
setLayout
void setLayout()
Sets the basic layout of the application
-
-