Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

seer1

By: ace on Oct 13th, 2010  |  syntax: None  |  size: 0.21 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }