Code

Finished multiple inheritance delegation
[inkscape.git] / src / bind / java / org / inkscape / dom / svg / SVGMissingGlyphElementImpl.java
index 063d01ea3e52b2100ce4a4ea82cf58e9873540c9..cbb115ee115fb3d446cb51589c0c2d5de6bddf7e 100644 (file)
@@ -41,10 +41,20 @@ public class SVGMissingGlyphElementImpl
                //SVGStylable
        implements org.w3c.dom.svg.SVGMissingGlyphElement
 {
+
+public SVGMissingGlyphElementImpl()
+{
+    imbue(_SVGStylable = new SVGStylableImpl());
+}
+
 //from SVGStylable
-public native SVGAnimatedString getClassName( );
-public native CSSStyleDeclaration getStyle( );
-public native CSSValue getPresentationAttribute ( String name );
+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