package javax.microedition.m2g;

import java.io.IOException;
import java.io.InputStream;

public abstract class ScalableImage
{

 protected ScalableImage()
 {
 }
 
 public static ScalableImage createImage(InputStream inputstream_1, ExternalResourceHandler externalresourcehandler_1) throws IOException
 {
  return null;
 }
 
 public static ScalableImage createImage(String string_1, ExternalResourceHandler externalresourcehandler_1) throws IOException
 {
  return null;
 }
 
 public abstract int getViewportHeight();
 
 public abstract int getViewportWidth();
 
 public abstract void setViewportWidth(int int_1);
 
 public abstract void setViewportHeight(int int_1);
 
 public abstract void requestCompleted(String string_1, InputStream inputstream_1) throws IOException;
 
}