1 18 package org.apache.batik.css.engine.value; 19 20 import org.apache.batik.css.engine.CSSEngine; 21 import org.w3c.css.sac.LexicalUnit; 22 import org.w3c.dom.DOMException ; 23 24 31 public interface ShorthandManager { 32 33 36 String getPropertyName(); 37 38 46 void setValues(CSSEngine eng, 47 PropertyHandler ph, 48 LexicalUnit lu, 49 boolean imp) 50 throws DOMException ; 51 52 55 public interface PropertyHandler { 56 public void property(String name, LexicalUnit value, 57 boolean important); 58 } 59 } 60 | Popular Tags |