12 lines
220 B
Java
12 lines
220 B
Java
package org.w3c.dom.svg;
|
|
|
|
public interface SVGTests {
|
|
SVGStringList getRequiredExtensions();
|
|
|
|
SVGStringList getRequiredFeatures();
|
|
|
|
SVGStringList getSystemLanguage();
|
|
|
|
boolean hasExtension(String str);
|
|
}
|