summaryrefslogblamecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java
blob: 5c739e085221f99b83dfe61b5a9eb7564647f05e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                            
                                            



















                                                                            
                                         


                                                                                     
                                                     


                                                                           
                                           


                                                                            
                                        
  
/*
 * SVGViewSpec.java
 *
 * Created on April 12, 2007, 3:24 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.basic;

import com.kitfox.salamander.svg.DOMString;
import com.kitfox.salamander.svg.coordSystems.SVGTransformList;

/**
 * 
 * The interface corresponds to an SVG View Specification.
 * @author kitfox
 */
public interface SVGViewSpec extends SVGZoomAndPan, SVGFitToViewBox
{
    /**
     * Corresponds to the transform setting on the SVG View Specification.
     */
    public SVGTransformList getTransform();
    /**
     * Corresponds to the viewTarget setting on the SVG View Specification.
     */
    public SVGElement getViewTarget();
    /**
     * Corresponds to the viewBox setting on the SVG View Specification.
     */
    public DOMString getViewBoxString();
    /**
     * Corresponds to the preserveAspectRatio setting on the SVG View Specification.
     */
    public DOMString getPreserveAspectRatioString();
    /**
     * Corresponds to the transform setting on the SVG View Specification.
     */
    public DOMString getTransformString();
    /**
     * Corresponds to the viewTarget setting on the SVG View Specification.
     */
    public DOMString getTargetString();
}