home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Extras / ODesign / SetupPSE.exe / data.z / BitMapObject.java < prev    next >
Encoding:
Java Source  |  1997-01-24  |  567 b   |  33 lines

  1. package COM.odi.demo.OSDraw;
  2.  
  3. /**
  4.  *      <H3>Copyright (C) Object Design Inc. 1996, 1997</H3>
  5.  */
  6.  
  7. import COM.odi.*;
  8. import java.awt.Graphics;
  9.  
  10. /*
  11.  * Class BitMapObject is the superclass for all persistent objects
  12.  * The next field points to the next instance in the database.
  13.  */
  14.  
  15. public abstract class BitMapObject {
  16.  
  17.   private BitMapObject next;
  18.  
  19.   public BitMapObject getNextObject() {
  20.     return next;
  21.   }
  22.  
  23.   public void setNextObject(BitMapObject next) {
  24.     this.next = next;
  25.   }
  26.  
  27.   // default drawFigure method
  28.  
  29.   public void drawFigure(Graphics g) {
  30.   }
  31. }
  32.  
  33.