summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGViewSpec.java
blob: a0200f04129d858578aff77de371ec879c762635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

package org.w3c.dom.svg;

public interface SVGViewSpec extends 
               SVGZoomAndPan,
               SVGFitToViewBox {
  public SVGTransformList getTransform( );
  public SVGElement       getViewTarget( );
  public String        getViewBoxString( );
  public String        getPreserveAspectRatioString( );
  public String        getTransformString( );
  public String        getViewTargetString( );
}