ace

seer1

ace
Oct 13th, 2010
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. package Magic8Ball2;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. public class Seer {
  6.  
  7. ArrayList<String> al;
  8.  
  9. public Seer(){
  10. al = new ArrayList<String>();
  11. }
  12.  
  13. public ArrayList<String> getAL(){
  14. return al;
  15. }
  16. }
Add Comment
Please, Sign In to add comment