Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /** Determines whether this Date is before the Date d.
  2. * @return true if and only if this Date is before d.
  3. */
  4. public boolean isBefore(Date d) {
  5. return true; // replace this line with your solution
  6. }
  7.  
  8. /** Determines whether this Date is after the Date d.
  9. * @return true if and only if this Date is after d.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement