Advertisement
Guest User

Untitled

a guest
Dec 27th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class Information {
  2. // ...
  3.  
  4. public BooleanProperty orientationProperty() {
  5. // ...
  6. }
  7.  
  8. // ...
  9. }
  10.  
  11. Information info = new Information(...);
  12. table.getItems().add(info);
  13. info.orientationProperty().addListener((obs, oldValue, newValue)
  14. -> System.out.println("orientation property edited"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement