1 18 package org.apache.batik.css.engine.value.svg; 19 20 import org.apache.batik.css.engine.value.Value; 21 import org.w3c.dom.DOMException ; 22 23 30 public interface SVGValue extends Value { 31 32 35 short getPaintType() throws DOMException ; 36 37 40 String getUri() throws DOMException ; 41 42 45 short getColorType() throws DOMException ; 46 47 50 String getColorProfile() throws DOMException ; 51 52 55 int getNumberOfColors() throws DOMException ; 56 57 61 float getColor(int i) throws DOMException ; 62 } 63 | Popular Tags |