summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fac0962)
raw | patch | inline | side by side (parent: fac0962)
author | ishmal <ishmal@users.sourceforge.net> | |
Sat, 22 Mar 2008 18:41:38 +0000 (18:41 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Sat, 22 Mar 2008 18:41:38 +0000 (18:41 +0000) |
diff --git a/src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java b/src/bind/java/org/inkscape/dom/smil/ElementSyncBehaviorImpl.java
index 4cbbf7f33d2d9b4a54869c397a9c865a1939b824..891895064c6f6d9db33f2c5d5e0c5497e8a57fba 100644 (file)
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 fff385dbc5eb3a0871a0ec0dcc3c08bfd1a21cc5..8ab0c57b5e0cfd0f512f12764319b85271660bd1 100644 (file)
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 c94812bf633abb41eafdb2c5317e38dfb63394e4..89acd6188c81ef9afa948e8d2873f059f29c7dc9 100644 (file)
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 59c02120d88a177c6d2f4e5dd4503914b9146684..0ebd44a2c5e118c56ceae10270c6f766f9a3c05c 100644 (file)
//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( )
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());
-}
-
}