diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-03-22 18:41:38 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-03-22 18:41:38 +0000 |
| commit | ddc9297f3276282edb417f45ad7fa008b9d54119 (patch) | |
| tree | 26b5c635dff4dc2387d53f8815d06c11dc493c9c /src/bind/java | |
| parent | Line-end fixups (diff) | |
| download | inkscape-ddc9297f3276282edb417f45ad7fa008b9d54119.tar.gz inkscape-ddc9297f3276282edb417f45ad7fa008b9d54119.zip | |
More delegation for SMIL
(bzr r5162)
Diffstat (limited to 'src/bind/java')
4 files changed, 19 insertions, 11 deletions
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()); -} - } |
