reorganized file layout (part 2: edits)
[org.ibex.core.git] / src / org / ibex / graphics / Picture.java
index d1abf61..528b0d7 100644 (file)
@@ -1,9 +1,10 @@
 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
-package org.ibex;
+package org.ibex.graphics;
 import java.io.*;
 import org.ibex.js.*;
+import org.ibex.plat.*;
 import org.ibex.util.*;
-import org.ibex.translators.*;
+import org.ibex.core.*;
 
 /** 
  *    The in-memory representation of a PNG or GIF image. It is
@@ -30,7 +31,7 @@ public class Picture {
     protected void loaded() { isLoaded = true; }
 
     /** turns a stream into a Picture.Source and passes it to the callback */
-    public static Picture load(final JS stream, final Scheduler.Task callback) {
+    public static Picture load(final JS stream, final Task callback) {
         Picture ret = (Picture)cache.get(stream);
         if (ret == null) cache.put(stream, ret = Platform.createPicture(stream));
         final Picture p = ret;