public Box(StyleIntValue top, StyleIntValue right, StyleIntValue bottom, StyleIntValue left) { this.top = top; this.right = right; this.bottom = bottom; this.left = left; }
public void Cascade(StyleIntValue baseValue) { if (!specified && baseValue.specified) { this.val = baseValue.val; this.specified = true; } }
public Box(StyleIntValue top, StyleIntValue right, StyleIntValue bottom, StyleIntValue left) { this.top=top; this.right=right; this.bottom=bottom; this.left=left; }
public void Cascade(StyleIntValue baseValue) { if ( !specified && baseValue.specified ) { this.val=baseValue.val; this.specified=true; } }