Code

(no commit message)
[inkscape.git] / trunk / src / bind / java / org / inkscape / dom / svg / SVGGradientElementImpl.java
diff --git a/trunk/src/bind/java/org/inkscape/dom/svg/SVGGradientElementImpl.java b/trunk/src/bind/java/org/inkscape/dom/svg/SVGGradientElementImpl.java
new file mode 100644 (file)
index 0000000..5d42069
--- /dev/null
@@ -0,0 +1,87 @@
+/**
+ * This is a simple mechanism to bind Inkscape to Java, and thence
+ * to all of the nice things that can be layered upon that.
+ *
+ * Authors:
+ *   Bob Jamison
+ *
+ * Copyright (c) 2007-2008 Inkscape.org
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 3 of the License, or (at your option) any later version.
+ *
+ *  This library is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  Lesser General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Lesser General Public
+ *  License along with this library; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ *  Note that these SVG files are implementations of the Java
+ *  interface package found here:
+ *      http://www.w3.org/TR/SVG/java.html
+ */
+
+
+package org.inkscape.dom.svg;
+
+import org.w3c.dom.DOMException;
+
+import org.w3c.dom.svg.*;
+
+import org.w3c.dom.css.CSSStyleDeclaration;
+import org.w3c.dom.css.CSSValue;
+
+
+
+public class SVGGradientElementImpl
+       extends
+               SVGElementImpl
+               //SVGURIReference,
+               //SVGExternalResourcesRequired,
+               //SVGStylable,
+               //SVGUnitTypes
+       implements org.w3c.dom.svg.SVGGradientElement
+{
+
+public SVGGradientElementImpl()
+{
+    imbue(_SVGURIReference = new SVGURIReferenceImpl());
+    imbue(_SVGExternalResourcesRequired = new SVGExternalResourcesRequiredImpl());
+    imbue(_SVGStylable = new SVGStylableImpl());
+}
+
+//from SVGURIReference
+private SVGURIReferenceImpl _SVGURIReference;
+public SVGAnimatedString getHref()
+    { return _SVGURIReference.getHref(); }
+//end SVGURIReference
+
+//from SVGExternalResourcesRequired
+private SVGExternalResourcesRequiredImpl _SVGExternalResourcesRequired;
+public SVGAnimatedBoolean getExternalResourcesRequired()
+    { return _SVGExternalResourcesRequired.getExternalResourcesRequired(); }
+//end SVGExternalResourcesRequired
+
+//from SVGStylable
+private SVGStylableImpl _SVGStylable;
+public SVGAnimatedString getClassName()
+    { return _SVGStylable.getClassName(); }
+public CSSStyleDeclaration getStyle()
+    { return _SVGStylable.getStyle(); }
+public CSSValue getPresentationAttribute(String name)
+    { return _SVGStylable.getPresentationAttribute(name); }
+//end SVGStylable
+
+
+
+public native SVGAnimatedEnumeration   getGradientUnits( );
+public native SVGAnimatedTransformList getGradientTransform( );
+public native SVGAnimatedEnumeration   getSpreadMethod( );
+}
+
+