Code

More delegation for SMIL
authorishmal <ishmal@users.sourceforge.net>
Sat, 22 Mar 2008 18:41:38 +0000 (18:41 +0000)
committerishmal <ishmal@users.sourceforge.net>
Sat, 22 Mar 2008 18:41:38 +0000 (18:41 +0000)
src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java
src/bind/java/org/inkscape/dom/smil/ElementTestImpl.java
src/bind/java/org/inkscape/dom/smil/ElementTimeManipulationImpl.java
src/bind/java/org/inkscape/dom/svg/SVGAElementImpl.java

index 4cbbf7f33d2d9b4a54869c397a9c865a1939b824..891895064c6f6d9db33f2c5d5e0c5497e8a57fba 100644 (file)
@@ -30,6 +30,8 @@ package org.inkscape.dom.smil;
 
 
 public class ElementSyncBehaviorImpl
+       extends
+             org.inkscape.cmn.BaseInterface
        implements org.w3c.dom.smil.ElementSyncBehavior
 {
 
index fff385dbc5eb3a0871a0ec0dcc3c08bfd1a21cc5..8ab0c57b5e0cfd0f512f12764319b85271660bd1 100644 (file)
@@ -31,6 +31,8 @@ package org.inkscape.dom.smil;
 import org.w3c.dom.DOMException;
 
 public class ElementTestImpl
+       extends
+             org.inkscape.cmn.BaseInterface
        implements org.w3c.dom.smil.ElementTest
 {
 
index c94812bf633abb41eafdb2c5317e38dfb63394e4..89acd6188c81ef9afa948e8d2873f059f29c7dc9 100644 (file)
@@ -32,6 +32,8 @@ import org.w3c.dom.DOMException;
 
 
 public class ElementTimeManipulationImpl
+       extends
+             org.inkscape.cmn.BaseInterface
        implements org.w3c.dom.smil.ElementTimeManipulation
 {
 
index 59c02120d88a177c6d2f4e5dd4503914b9146684..0ebd44a2c5e118c56ceae10270c6f766f9a3c05c 100644 (file)
@@ -54,6 +54,19 @@ public class SVGAElementImpl
                //EventTarget
        implements org.w3c.dom.svg.SVGAElement
 {
+public SVGAElementImpl()
+{
+     imbue(_SVGURIReference = new SVGURIReferenceImpl());
+     imbue(_SVGTests = new SVGTestsImpl());
+     imbue(_SVGLangSpace = new SVGLangSpaceImpl());
+     imbue(_SVGExternalResourcesRequired = new SVGExternalResourcesRequiredImpl());
+     imbue(_SVGStylable = new SVGStylableImpl());
+     imbue(_SVGTransformable = new SVGTransformableImpl());
+     imbue(_EventTarget = new org.inkscape.dom.events.EventTargetImpl());
+}
+
+
+
 //from SVGURIReference
 private SVGURIReferenceImpl _SVGURIReference;
 public SVGAnimatedString getHref( )
@@ -162,15 +175,4 @@ public boolean hasEventListenerNS(String namespaceURI,
 public native SVGAnimatedString getTarget( );
 
 
-public SVGAElementImpl()
-{
-     imbue(_SVGURIReference = new SVGURIReferenceImpl());
-     imbue(_SVGTests = new SVGTestsImpl());
-     imbue(_SVGLangSpace = new SVGLangSpaceImpl());
-     imbue(_SVGExternalResourcesRequired = new SVGExternalResourcesRequiredImpl());
-     imbue(_SVGStylable = new SVGStylableImpl());
-     imbue(_SVGTransformable = new SVGTransformableImpl());
-     imbue(_EventTarget = new org.inkscape.dom.events.EventTargetImpl());
-}
-
 }