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.java45
1 files changed, 45 insertions, 0 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
new file mode 100755
index 0000000..addb8bd
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java
@@ -0,0 +1,45 @@
+/*
+ * 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.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 SVGString getViewBoxString();
+ /**
+ * Corresponds to the preserveAspectRatio setting on the SVG View Specification.
+ */
+ public SVGString getPreserveAspectRatioString();
+ /**
+ * Corresponds to the transform setting on the SVG View Specification.
+ */
+ public SVGString getTransformString();
+ /**
+ * Corresponds to the viewTarget setting on the SVG View Specification.
+ */
+ public SVGString getTargetString();
+}