package javax.microedition.m2g;

import java.io.IOException;
import java.io.InputStream;
import org.w3c.dom.DOMException;
import org.w3c.dom.Document;
import org.w3c.dom.svg.SVGElement;

public class SVGImage extends ScalableImage
{

 protected SVGImage()
 {
 }
 
 public static SVGImage createEmptyImage(ExternalResourceHandler)
 {
  return null;
 }
 
 public void activate()
 {
 }
 
 public void dispatchMouseEvent(String, int, int) throws DOMException
 {
 }
 
 public void focusOn(SVGElement) throws DOMException
 {
 }
 
 public Document getDocument()
 {
  return null;
 }
 
 public void incrementTime(float)
 {
 }
 
 public int getViewportHeight()
 {
  return 0;
 }
 
 public int getViewportWidth()
 {
  return 0;
 }
 
 public void setViewportHeight(int)
 {
 }
 
 public void setViewportWidth(int)
 {
 }
 
 public void requestCompleted(String, InputStream) throws IOException
 {
 }
 
}