Example #1
0
 public ColorTypeProperty(ColorType colorType)
 {
     this.colorType = colorType;
 }
Example #2
0
 private BorderInfo(int style, ResolvedCondLength width, ColorType color)
 {
     mStyle = style;
     mWidth = width;
     mColor = color;
 }
Example #3
0
 public void setBorder(int side, int style, CondLength width,
                       ColorType color)
 {
     borderInfo[side] = new BorderInfo(style, width, color);
 }
Example #4
0
 internal BorderInfo(int style, CondLength width, ColorType color)
 {
     mStyle = style;
     mWidth = new ResolvedCondLength(width);
     mColor = color;
 }