Guest User

Untitled

a guest
May 1st, 2013
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1.  
  2. public class Cella {
  3.     private String matricola;
  4.     public Cella next;
  5.         public Cella(String matricola)
  6.         {
  7.             this(matricola,null);
  8.         }
  9.         public Cella(String matricola, Cella next)
  10.         {
  11.             this.matricola=matricola;
  12.             this.next=next;
  13.         }
  14.         public String getMatricola()
  15.         {
  16.             return matricola;
  17.         }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment