Code

dos to unix conversion
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGZoomAndPan.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGZoomAndPan {
7   // Zoom and Pan Types
8   public static final short SVG_ZOOMANDPAN_UNKNOWN   = 0;
9   public static final short SVG_ZOOMANDPAN_DISABLE = 1;
10   public static final short SVG_ZOOMANDPAN_MAGNIFY = 2;
12   public short getZoomAndPan( );
13   public void      setZoomAndPan( short zoomAndPan )
14                        throws DOMException;
15 }