Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public Contatto(String nome, String eMail, String telString)
  2. {
  3. this.nome = nome;
  4. this.eMail = eMail;
  5. tels = new ArrayList<String>();
  6. String[] temp = telString.split(",");
  7. for(String s:temp)
  8. {
  9. tels.add(s);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement