Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public Duration add(Duration otherDuration){
  2.   return new Duration(this.getHours()+otherDuration.getHours(), this.getMinutes()+otherDuration.getMinutes(), this.getSeconds()+otherDuration.getSeconds());
  3. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement