Advertisement
Guest User

Match

a guest
Oct 6th, 2012
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.infobip.jsouptest;
  6.  
  7. /**
  8. *
  9. * @author linski
  10. */
  11. public class Match {
  12.  
  13. private String url;
  14.  
  15. public Match(String url) {
  16. this.url = url;
  17. }
  18.  
  19. @Override
  20. public String toString() {
  21. return "Match{" + "url=" + url + '}';
  22. }
  23.  
  24.  
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement