1 18 package org.apache.batik.dom.svg; 19 20 import org.w3c.dom.Element ; 21 import org.w3c.dom.svg.SVGStringList; 22 23 29 public class SVGTestsSupport { 30 31 34 public SVGTestsSupport() { 35 } 36 37 40 public static SVGStringList getRequiredFeatures(Element elt) { 41 throw new RuntimeException (" !!! TODO: getRequiredFeatures()"); 42 } 43 44 47 public static SVGStringList getRequiredExtensions(Element elt) { 48 throw new RuntimeException (" !!! TODO: getRequiredExtensions()"); 49 } 50 51 54 public static SVGStringList getSystemLanguage(Element elt) { 55 throw new RuntimeException (" !!! TODO: getSystemLanguage()"); 56 } 57 58 61 public static boolean hasExtension(Element elt, String extension) { 62 throw new RuntimeException (" !!! TODO: hasExtension()"); 63 } 64 } 65 | Popular Tags |