home *** CD-ROM | disk | FTP | other *** search
- package sun.awt.windows;
-
- import java.awt.Graphics;
- import java.awt.image.ImageProducer;
- import sun.awt.image.Image;
- import sun.awt.image.ImageRepresentation;
-
- class WImage extends Image {
- public WImage(int w, int h) {
- super(w, h);
- }
-
- public WImage(ImageProducer producer) {
- super(producer);
- }
-
- public Graphics getGraphics() {
- return new WGraphics(this);
- }
-
- protected ImageRepresentation getImageRep(int w, int h) {
- return super.getImageRep(w, h);
- }
- }
-