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.Object
Class 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.BorderPane
borderPane
private javafx.scene.layout.GridPane
gridPane
private Header
header
-
Constructor Summary
Constructors Constructor Description SceneRoot()
SceneRoot constructor, used by all its subclasses
-
Method Summary
Modifier and Type Method Description javafx.scene.layout.BorderPane
getBorderPane()
(package private) javafx.scene.layout.GridPane
getGridPane()
(package private) void
setGridPane()
SetGridPane void, sets padding and alignment for the grid pane(package private) void
setLayout()
Sets the basic layout of the application(package private) void
setPageTitle(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
-
-