1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 6 public interface SVGZoomAndPan { 7 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; 11 12 public short getZoomAndPan( ); 13 public void setZoomAndPan( short zoomAndPan ) 14 throws DOMException ; 15 } 16 | Popular Tags |