SplitPane javadoc has the following text:
SplitPane sp = new SplitPane();
sp.setLeft(new Button("LEFT BUTTON"));
sp.setRight(new Button("RIGHT BUTTON"));
sp.setDividerLocation(0.4f);
but doesn't have setLeft and setRight methods.
SplitPane sp = new SplitPane();
sp.setLeft(new Button("LEFT BUTTON"));
sp.setRight(new Button("RIGHT BUTTON"));
sp.setDividerLocation(0.4f);
but doesn't have setLeft and setRight methods.