Class CSSPropertyCustomizerBorderBottomLeftRadius
java.lang.Object
com.helger.css.property.customizer.AbstractCSSPropertyCustomizer
com.helger.css.property.customizer.CSSPropertyCustomizerBorderBottomLeftRadius
- All Implemented Interfaces:
ICSSPropertyCustomizer
@Immutable
public class CSSPropertyCustomizerBorderBottomLeftRadius
extends AbstractCSSPropertyCustomizer
Special customizer for the "border-bottom-left-radius" property.
- Author:
- Philip Helger
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateSpecialValue(ICSSProperty aProperty, String sValue, boolean bIsImportant) Create a special value for the passed property.Methods inherited from class com.helger.css.property.customizer.AbstractCSSPropertyCustomizer
equals, hashCode, toString
-
Constructor Details
-
CSSPropertyCustomizerBorderBottomLeftRadius
public CSSPropertyCustomizerBorderBottomLeftRadius()
-
-
Method Details
-
createSpecialValue
@Nullable public ICSSValue createSpecialValue(@Nonnull ICSSProperty aProperty, @Nonnull @Nonempty String sValue, boolean bIsImportant) Description copied from interface:ICSSPropertyCustomizerCreate a special value for the passed property. For example if the property is "border-radius" than the browser specific values like "-moz-border-radius" and "-webkit-border-radius" should be emitted as well.- Parameters:
aProperty- The CSS property the fuzz is all about. Nevernull.sValue- The value to be created. Neithernullnor empty.bIsImportant-trueif the property is important,falseif not.- Returns:
- May be
nullin which case the default value is created.
-