1 14 package org.wings; 15 16 import org.wings.io.Device; 17 18 import java.io.IOException ; 19 import java.io.Serializable ; 20 21 27 public interface SLayoutManager extends SConstants, Serializable , Renderable { 28 34 void addComponent(SComponent c, Object constraint, int index); 35 36 41 void removeComponent(SComponent c); 42 43 48 void setContainer(SContainer c); 49 50 55 SContainer getContainer(); 56 57 62 void write(Device s) throws IOException ; 63 64 69 void updateCG(); 70 } 71 72 73 | Popular Tags |