Sign in
webkit
/
WebKit
/
fe3f8a9f58c921838bd3a920db5f85be838171cd
/
.
/
ManualTests
/
resources
/
TestApplet.java
blob: e4758a39fdee4363ce65d27f111136e8c777e8ba [
file
] [
log
] [
blame
]
import
java
.
applet
.
Applet
;
public
class
TestApplet
extends
Applet
{
public
static
int
MAGIC_NUMBER
=
1
;
public
int
field
;
public
void
init
()
{
field
=
MAGIC_NUMBER
;
}
public
int
method
()
{
return
MAGIC_NUMBER
;
}
}