1 18 package org.apache.batik.css.engine.value; 19 20 import org.w3c.dom.DOMException ; 21 22 28 public interface Value { 29 30 33 String getCssText(); 34 35 38 short getCssValueType(); 39 40 43 short getPrimitiveType(); 44 45 51 float getFloatValue() throws DOMException ; 52 53 59 String getStringValue() throws DOMException ; 60 61 67 Value getRed() throws DOMException ; 68 69 75 Value getGreen() throws DOMException ; 76 77 83 Value getBlue() throws DOMException ; 84 85 93 int getLength() throws DOMException ; 94 95 103 Value item(int index) throws DOMException ; 104 105 111 Value getTop() throws DOMException ; 112 113 119 Value getRight() throws DOMException ; 120 121 127 Value getBottom() throws DOMException ; 128 129 135 Value getLeft() throws DOMException ; 136 137 143 String getIdentifier() throws DOMException ; 144 145 151 String getListStyle() throws DOMException ; 152 153 159 String getSeparator() throws DOMException ; 160 } 161 | Popular Tags |