home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap3 / exer0302 / Bridge.java
Encoding:
Text File  |  1997-04-19  |  118 b   |  10 lines

  1. class Bridge {
  2.    int length;
  3.    Bridge(int length) {
  4.       this.length = length;
  5.    }
  6.    Bridge() {
  7.    }
  8. }
  9.  
  10.