Main.java:10: error: cannot find symbol
public GridPane addGridPaneRight() {
^
symbol: class GridPane
location: class Ideone
Main.java:12: error: cannot find symbol
GridPane gridpane = new GridPane();
^
symbol: class GridPane
location: class Ideone
Main.java:12: error: cannot find symbol
GridPane gridpane = new GridPane();
^
symbol: class GridPane
location: class Ideone
Main.java:17: error: cannot find symbol
table.setEditable(true);
^
symbol: variable table
location: class Ideone
Main.java:19: error: cannot find symbol
TableColumn firstNameCol = new TableColumn("First Name");
^
symbol: class TableColumn
location: class Ideone
Main.java:19: error: cannot find symbol
TableColumn firstNameCol = new TableColumn("First Name");
^
symbol: class TableColumn
location: class Ideone
Main.java:20: error: cannot find symbol
TableColumn lastNameCol = new TableColumn("Last Name");
^
symbol: class TableColumn
location: class Ideone
Main.java:20: error: cannot find symbol
TableColumn lastNameCol = new TableColumn("Last Name");
^
symbol: class TableColumn
location: class Ideone
Main.java:21: error: cannot find symbol
TableColumn emailCol = new TableColumn("Email");
^
symbol: class TableColumn
location: class Ideone
Main.java:21: error: cannot find symbol
TableColumn emailCol = new TableColumn("Email");
^
symbol: class TableColumn
location: class Ideone
Main.java:22: error: cannot find symbol
TableColumn emailCol1 = new TableColumn("Email");
^
symbol: class TableColumn
location: class Ideone
Main.java:22: error: cannot find symbol
TableColumn emailCol1 = new TableColumn("Email");
^
symbol: class TableColumn
location: class Ideone
Main.java:24: error: cannot find symbol
table.getColumns().addAll(firstNameCol, lastNameCol, emailCol, emailCol1, emailCol1);
^
symbol: variable table
location: class Ideone
Main.java:25: error: cannot find symbol
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
^
symbol: variable TableView
location: class Ideone
Main.java:25: error: cannot find symbol
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
^
symbol: variable table
location: class Ideone
Main.java:27: error: cannot find symbol
gridpane.getChildren().addAll(table);
^
symbol: variable table
location: class Ideone
Main.java:34: error: cannot find symbol
BorderPane border = new BorderPane();
^
symbol: class BorderPane
location: class Ideone
Main.java:34: error: cannot find symbol
BorderPane border = new BorderPane();
^
symbol: class BorderPane
location: class Ideone
Main.java:35: error: cannot find symbol
GridPane gridpaneleft = addGridPaneLeft();
^
symbol: class GridPane
location: class Ideone
Main.java:35: error: cannot find symbol
GridPane gridpaneleft = addGridPaneLeft();
^
symbol: method addGridPaneLeft()
location: class Ideone
Main.java:36: error: cannot find symbol
GridPane gridpaneright = addGridPaneRight();
^
symbol: class GridPane
location: class Ideone
Main.java:36: error: non-static method addGridPaneRight() cannot be referenced from a static context
GridPane gridpaneright = addGridPaneRight();
^
Main.java:41: error: cannot find symbol
BorderPane.setMargin(gridpaneright, new Insets(12,12,12,12));
^
symbol: class Insets
location: class Ideone
Main.java:41: error: cannot find symbol
BorderPane.setMargin(gridpaneright, new Insets(12,12,12,12));
^
symbol: variable BorderPane
location: class Ideone
Main.java:44: error: cannot find symbol
Scene scene = new Scene(border, 700, 300);
^
symbol: class Scene
location: class Ideone
Main.java:44: error: cannot find symbol
Scene scene = new Scene(border, 700, 300);
^
symbol: class Scene
location: class Ideone
26 errors