PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Pastebin launched a little side project called
HostCabi.net
, check it out ;-)
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
VoidLauncherCrash - CrazyCraft
3 sec ago
Test
36 sec ago
Untitled
16 sec ago
Untitled
21 sec ago
Untitled
25 sec ago
Untitled
36 sec ago
Untitled
30 sec ago
Untitled
31 sec ago
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)
package Magic8Ball2;
import java.util.ArrayList;
public class Seer {
ArrayList<String> al;
public Seer(){
al = new ArrayList<String>();
}
public ArrayList<String> getAL(){
return al;
}
}
create a
new version
of this paste
RAW Paste Data
package Magic8Ball2; import java.util.ArrayList; public class Seer { ArrayList<String> al; public Seer(){ al = new ArrayList<String>(); } public ArrayList<String> getAL(){ return al; } }