home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-01-24 | 567 b | 33 lines |
- package COM.odi.demo.OSDraw;
-
- /**
- * <H3>Copyright (C) Object Design Inc. 1996, 1997</H3>
- */
-
- import COM.odi.*;
- import java.awt.Graphics;
-
- /*
- * Class BitMapObject is the superclass for all persistent objects
- * The next field points to the next instance in the database.
- */
-
- public abstract class BitMapObject {
-
- private BitMapObject next;
-
- public BitMapObject getNextObject() {
- return next;
- }
-
- public void setNextObject(BitMapObject next) {
- this.next = next;
- }
-
- // default drawFigure method
-
- public void drawFigure(Graphics g) {
- }
- }
-
-