Package org.pepstock.charba.client.items
Interface IsBorderRadius
-
- All Known Implementing Classes:
BarBorderRadius
,BorderRadiusItem
public interface IsBorderRadius
Defines the border radius for element, applies the corner radius to all corners of the rectangle (topLeft, topRight, bottomLeft, bottomRight).- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBottomLeft()
Returns the border radius for bottom-left corner of the rectangle, in pixel.int
getBottomRight()
Returns the border radius for bottom-right corner of the rectangle, in pixel.int
getTopLeft()
Returns the border radius for top-left corner of the rectangle, in pixel.int
getTopRight()
Returns the border radius for top-right corner of the rectangle, in pixel.
-
-
-
Method Detail
-
getTopLeft
int getTopLeft()
Returns the border radius for top-left corner of the rectangle, in pixel.- Returns:
- the border radius for top-left corner of the rectangle, in pixel.
-
getTopRight
int getTopRight()
Returns the border radius for top-right corner of the rectangle, in pixel.- Returns:
- the border radius for top-right corner of the rectangle, in pixel.
-
getBottomLeft
int getBottomLeft()
Returns the border radius for bottom-left corner of the rectangle, in pixel.- Returns:
- the border radius for bottom-left corner of the rectangle, in pixel.
-
getBottomRight
int getBottomRight()
Returns the border radius for bottom-right corner of the rectangle, in pixel.- Returns:
- the border radius for bottom-right corner of the rectangle, in pixel.
-
-