1 29 30 package nextapp.echo2.app.layout; 31 32 import nextapp.echo2.app.Alignment; 33 import nextapp.echo2.app.Color; 34 import nextapp.echo2.app.FillImage; 35 import nextapp.echo2.app.Insets; 36 import nextapp.echo2.app.LayoutData; 37 38 42 public abstract class CellLayoutData 43 implements LayoutData { 44 45 private Color background; 46 private FillImage backgroundImage; 47 private Insets insets; 48 private Alignment alignment; 49 50 55 public Alignment getAlignment() { 56 return alignment; 57 } 58 59 64 public Color getBackground() { 65 return background; 66 } 67 68 73 public FillImage getBackgroundImage() { 74 return backgroundImage; 75 } 76 77 82 public Insets getInsets() { 83 return insets; 84 } 85 86 91 public void setAlignment(Alignment newValue) { 92 alignment = newValue; 93 } 94 95 100 public void setBackground(Color newValue) { 101 background = newValue; 102 } 103 104 109 public void setBackgroundImage(FillImage newValue) { 110 backgroundImage = newValue; 111 } 112 113 118 public void setInsets(Insets newValue) { 119 insets = newValue; 120 } 121 } 122 | Popular Tags |