1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.DOMException ; 22 import org.w3c.dom.svg.SVGAnimatedBoolean; 23 import org.w3c.dom.svg.SVGAnimationElement; 24 import org.w3c.dom.svg.SVGElement; 25 import org.w3c.dom.svg.SVGStringList; 26 27 33 public abstract class SVGOMAnimationElement 34 extends SVGOMElement 35 implements SVGAnimationElement { 36 37 40 protected SVGOMAnimationElement() { 41 } 42 43 48 protected SVGOMAnimationElement(String prefix, AbstractDocument owner) { 49 super(prefix, owner); 50 51 } 52 53 56 public SVGElement getTargetElement() { 57 throw new RuntimeException ("!!! TODO: getTargetElement()"); 58 } 59 60 63 public float getStartTime() { 64 throw new RuntimeException ("!!! TODO: getStartTime()"); 65 } 66 67 70 public float getCurrentTime() { 71 throw new RuntimeException ("!!! TODO: getCurrentTime()"); 72 } 73 74 77 public float getSimpleDuration() throws DOMException { 78 throw new RuntimeException ("!!! TODO: getSimpleDuration()"); 79 } 80 81 83 87 public boolean beginElement() throws DOMException { 88 throw new RuntimeException ("!!! TODO: beginElement()"); 89 } 90 91 95 public boolean beginElementAt(float offset) throws DOMException { 96 throw new RuntimeException ("!!! TODO: beginElementAt()"); 97 } 98 99 103 public boolean endElement() throws DOMException { 104 throw new RuntimeException ("!!! TODO: endElement()"); 105 } 106 107 111 public boolean endElementAt(float offset) throws DOMException { 112 throw new RuntimeException ("!!! TODO: endElementAt(float)"); 113 } 114 115 117 121 public SVGAnimatedBoolean getExternalResourcesRequired() { 122 return SVGExternalResourcesRequiredSupport. 123 getExternalResourcesRequired(this); 124 } 125 126 128 132 public SVGStringList getRequiredFeatures() { 133 return SVGTestsSupport.getRequiredFeatures(this); 134 } 135 136 140 public SVGStringList getRequiredExtensions() { 141 return SVGTestsSupport.getRequiredExtensions(this); 142 } 143 144 148 public SVGStringList getSystemLanguage() { 149 return SVGTestsSupport.getSystemLanguage(this); 150 } 151 152 156 public boolean hasExtension(String extension) { 157 return SVGTestsSupport.hasExtension(this, extension); 158 } 159 } 160 | Popular Tags |