KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGTests


1
2 package org.w3c.dom.svg;
3
4 public interface SVGTests {
5   public SVGStringList getRequiredFeatures( );
6   public SVGStringList getRequiredExtensions( );
7   public SVGStringList getSystemLanguage( );
8
9   public boolean hasExtension ( String JavaDoc extension );
10 }
11
Popular Tags