home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.ee.pdx.edu
/
2014.02.ftp.ee.pdx.edu.tar
/
ftp.ee.pdx.edu
/
oss
/
cvs-2004
/
OpenHamLog
/
src
/
Counter.java,v
< prev
next >
Wrap
Text File
|
2003-08-12
|
532b
|
52 lines
head 1.2;
access;
symbols;
locks; strict;
comment @# @;
1.2
date 2003.08.12.03.44.36; author htodd; state Exp;
branches;
next 1.1;
1.1
date 2003.07.14.19.37.57; author htodd; state Exp;
branches;
next ;
desc
@@
1.2
log
@Kinda works as a filter.
@
text
@//: Counter.java
// Counter class for some sort of abstraction
// From "Thinking in Java" by Bruce Eckel
class Counter {
private int i = 1;
int read() {
return i;
}
void increment() {
i++;
}
}
@
1.1
log
@Moving files and starting ant.
@
text
@d3 1
@