home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
code
/
chap1
/
Movie.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-04-19
|
177 b
|
10 lines
class Movie {
static int id;
String name;
int runningTime;
boolean thumbsUp;
boolean letsSeeIt() {
return thumbsUp && (runningTime < 130);
}
}