KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3c.dom.svg;
3
4 public interface SVGUnitTypes {
5   // Unit Types
6
public static final short SVG_UNIT_TYPE_UNKNOWN = 0;
7   public static final short SVG_UNIT_TYPE_USERSPACEONUSE = 1;
8   public static final short SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
9 }
10
Popular Tags