Class BorderTop

All Implemented Interfaces:
CssProperty, StateChangeInformer<CssProperty>, Serializable, Cloneable

public class BorderTop extends AbstractCssProperty<BorderTop> implements StateChangeInformer<CssProperty>
 The border-top shorthand property sets all the top border properties in one declaration.

 The properties that can be set, are (in order): border-top-width, border-top-style, and border-top-color.

 If one of the values above are missing, e.g. border-top:solid #ff0000, the default value for the missing property will be inserted, if any.
 Default value:  medium none color
 Inherited:      no
 Animatable:     yes
 Version:        CSS1
 JavaScript syntax:      object.style.borderTop="3px dashed blue"
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • BorderTop

      public BorderTop()
      The value medium none black will be assigned as the cssValue.
      Since:
      1.0.0
    • BorderTop

      public BorderTop(String cssValue)
      Parameters:
      cssValue - the css value to set.
    • BorderTop

      public BorderTop(BorderTop borderTop)
      Parameters:
      borderTop - the BorderTop object from which the cssValue to set.And, null will throw NullValueException
  • Method Details

    • getCssName

      public String getCssName()
      Specified by:
      getCssName in interface CssProperty
      Returns:
      the name portion in style, eg align-content for style align-content: center.
    • getCssValue

      public String getCssValue()
      Specified by:
      getCssValue in interface CssProperty
      Returns:
      the value portion in style, eg center for style align-content: center.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • setCssValue

      public BorderTop setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<BorderTop>
      Parameters:
      cssValue - the value should be in the format of medium none color, initial or inherit. null is considered as an invalid value and it will throw NullValueException.
      Returns:
      the current object.
      Since:
      1.0.0
    • isValid

      public static boolean isValid(String cssValue)
      checks the given css value is valid for this class. It does't do a strict validation.
      Parameters:
      cssValue -
      Returns:
      Since:
      1.0.0
    • setAsInitial

      public void setAsInitial()
      sets as initial
      Since:
      1.0.0
    • setAsInherit

      public void setAsInherit()
      sets as inherit
      Since:
      1.0.0
    • getBorderTopColor

      public BorderTopColor getBorderTopColor()
    • getBorderTopStyle

      public BorderTopStyle getBorderTopStyle()
    • getBorderTopWidth

      public BorderTopWidth getBorderTopWidth()
    • setBorderTopWidth

      public BorderTop setBorderTopWidth(BorderTopWidth borderTopWidth)
    • setBorderTopStyle

      public BorderTop setBorderTopStyle(BorderTopStyle borderTopStyle)
    • setBorderTopColor

      public BorderTop setBorderTopColor(BorderTopColor borderTopColor)
    • stateChanged

      public void stateChanged(CssProperty stateChangedObject)
      Specified by:
      stateChanged in interface StateChangeInformer<CssProperty>
    • addPredefinedConstant

      protected void addPredefinedConstant(String constant)
      Since:
      1.0.0