From: ishmal Date: Sat, 22 Mar 2008 18:41:38 +0000 (+0000) Subject: More delegation for SMIL X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e52a9b660d925f4cf0a822ec19eb39c6d6d23859;p=inkscape.git More delegation for SMIL --- diff --git a/src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java b/src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java index 4cbbf7f33..891895064 100644 --- a/src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java +++ b/src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java @@ -30,6 +30,8 @@ package org.inkscape.dom.smil; public class ElementSyncBehaviorImpl + extends + org.inkscape.cmn.BaseInterface implements org.w3c.dom.smil.ElementSyncBehavior { diff --git a/src/bind/java/org/inkscape/dom/smil/ElementTestImpl.java b/src/bind/java/org/inkscape/dom/smil/ElementTestImpl.java index fff385dbc..8ab0c57b5 100644 --- a/src/bind/java/org/inkscape/dom/smil/ElementTestImpl.java +++ b/src/bind/java/org/inkscape/dom/smil/ElementTestImpl.java @@ -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 { diff --git a/src/bind/java/org/inkscape/dom/smil/ElementTimeManipulationImpl.java b/src/bind/java/org/inkscape/dom/smil/ElementTimeManipulationImpl.java index c94812bf6..89acd6188 100644 --- a/src/bind/java/org/inkscape/dom/smil/ElementTimeManipulationImpl.java +++ b/src/bind/java/org/inkscape/dom/smil/ElementTimeManipulationImpl.java @@ -32,6 +32,8 @@ import org.w3c.dom.DOMException; public class ElementTimeManipulationImpl + extends + org.inkscape.cmn.BaseInterface implements org.w3c.dom.smil.ElementTimeManipulation { diff --git a/src/bind/java/org/inkscape/dom/svg/SVGAElementImpl.java b/src/bind/java/org/inkscape/dom/svg/SVGAElementImpl.java index 59c02120d..0ebd44a2c 100644 --- a/src/bind/java/org/inkscape/dom/svg/SVGAElementImpl.java +++ b/src/bind/java/org/inkscape/dom/svg/SVGAElementImpl.java @@ -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()); -} - }