Advertisement
Guest User

Untitled

a guest
Apr 10th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package testy.parmutace;
  6.  
  7. import java.util.ArrayList;
  8. import java.util.List;
  9.  
  10. /**
  11.  *
  12.  * @author osiris
  13.  */
  14. public class Place {
  15.     public List<Integer> tokens ;
  16.    
  17.     //constructor
  18.     public Place() {
  19.    
  20.       this.tokens = new ArrayList<Integer>();  
  21.     }
  22.    
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement