1 22 23 package cypress.spi; 24 25 import java.util.*; 26 import cypress.*; 27 28 public interface DocumentHandler 29 { 30 void startDocument( InputSource source ); 31 32 void endDocument( InputSource source ); 33 34 void comment( String text ); 35 36 void startSelector( List selectors ); 37 38 void endSelector( List selectors ); 39 40 void property( String name, CssValue value, boolean isImportant ); 41 } 42 | Popular Tags |