home *** CD-ROM | disk | FTP | other *** search
-
- /* inChar class */
- class inChar {
-
- int count = 1;
- char c;
-
- /* constructor */
- public inChar(char c) { this.c = c; }
-
- public char accessc() { return c; }
- public void upcount() { count++; }
- public void downcount() { count--; }
- public boolean countdone() {
- return (count==1)?true:false;
- }
- }
-