Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class Appointment implements PropertyBusinessObject {
  2. public final Property<Double, Appointment> id = new Property<>("id");
  3. public final Property<Date, Appointment> bookDate =
  4. new Property<> "bookDate", Date.class);
  5.  
  6. Appointment a = (Appointment) obj;
  7. for (UiBinding.Binding b : bindingList) {
  8. b.commit();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement