summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java')
-rwxr-xr-xsrc/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java
deleted file mode 100755
index 5c739e0..0000000
--- a/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * 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();
-}