1 14 package org.wings.border; 15 16 import org.wings.style.CSSAttributeSet; 17 18 import java.awt.*; 19 import java.io.Serializable ; 20 21 27 public interface SBorder extends Serializable { 28 34 void setInsets(Insets insets); 35 36 42 Insets getInsets(); 43 44 49 Color getColor(); 50 51 56 void setColor(Color color); 57 58 64 public int getThickness(); 65 66 71 public void setThickness(int thickness); 72 73 CSSAttributeSet getAttributes(); 74 } 75 | Popular Tags |