X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FPicture.java;h=8cd3c972feaf442ea4c786fed2fe599cfe433e8d;hb=c6069948906645d974f46bdb96617a9a6a504636;hp=3f60854366735d7f3d3e5b8574bcbe3c505b44d4;hpb=6242c991f365dbd67eba62ecfa5df769a83fcbc6;p=org.ibex.core.git diff --git a/src/org/xwt/Picture.java b/src/org/xwt/Picture.java index 3f60854..8cd3c97 100644 --- a/src/org/xwt/Picture.java +++ b/src/org/xwt/Picture.java @@ -1,10 +1,10 @@ -// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL] +// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] package org.xwt; /** *

* The in-memory representation of a PNG or GIF image. It is - * read-only. It is usually passed to DoubleBuffer.drawPicture() + * read-only. It is usually passed to PixelBuffer.drawPicture() *

* *

@@ -14,7 +14,7 @@ package org.xwt; * example, using a Pixmap on X11). *

*/ -public interface Picture { - public int getHeight(); - public int getWidth(); +public abstract class Picture { + public abstract int getHeight(); + public abstract int getWidth(); }