1 14 package org.wings.style; 15 16 import org.wings.Renderable; 17 18 import java.io.IOException ; 19 import java.io.InputStream ; 20 import java.util.Set ; 21 22 28 public interface StyleSheet extends Renderable { 29 33 void putStyle(Style style); 34 35 39 Set styles(); 40 41 44 boolean isFinal(); 45 46 50 void read(InputStream inStream) throws IOException ; 51 } 52 53 54 | Popular Tags |