Class BorderImageSource

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

public class BorderImageSource extends AbstractCssProperty<BorderImageSource> implements StateChangeInformer<Bean>

 border-image-source: none|image|initial|inherit;

 The border-image-source property specifies the path to the image to be used as a border (instead of the normal border around an element).

 Tip: If the value is "none", or if the image cannot be displayed, the border styles will be used.

 Tip: Also look at the border-image property (a shorthand property for setting all the border-image-* properties).
 Default value:  none
 Inherited:      no
 Animatable:     no
 Version:        CSS3
 JavaScript syntax:      object.style.borderImageSource="url(border.png)"

 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • BorderImageSource

      public BorderImageSource()
      the default value is none
      Since:
      1.0.0
    • BorderImageSource

      public BorderImageSource(String cssValue)
      Parameters:
      cssValue - the cssValue to set.
      eg:- url(images/BackgroundDesign.png)
    • BorderImageSource

      public BorderImageSource(BorderImageSource borderImageSource)
      Parameters:
      borderImageSource - the BorderImageSource object from which the cssName and cssValue to set.
    • BorderImageSource

      public BorderImageSource(String... imageUrls)
      sample code :- new BorderImageSource("Test.gif", "TestImage.png") creates background-image: url("Test.gif"), url("TestImage.png"); . For css3 syntax method please use new BorderImageSource(UrlCss3Value... urlCss3Values) or setImageUrls(UrlCss3Value... urlCss3Values) method.
      Parameters:
      imageUrls - an array of backgroundImage urls, eg:- backgroundImage.setImageUrls("Test.gif", "TestImage.png") and the generated css will be background-image: url("Test.gif"), url("TestImage.png");
      Since:
      1.0.0
    • BorderImageSource

      public BorderImageSource(UrlCss3Value... urlCss3Values)
      Parameters:
      urlCss3Values - an array of UrlCss3Value objects.
  • 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 BorderImageSource setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<BorderImageSource>
      Parameters:
      cssValue - null is considered as an invalid value.
      Returns:
      the current object.
      Since:
      1.0.0
    • setImageUrls

      public void setImageUrls(String... imageUrls)
      sample code :- backgroundImage.setImageUrls("Test.gif", "TestImage.png") creates background-image: url("Test.gif"), url("TestImage.png");. For css3 syntax method please use setImageUrls(UrlCss3Value... urlCss3Values) method.
      Parameters:
      imageUrls - an array of backgroundImage urls, eg:- backgroundImage.setImageUrls("Test.gif", "TestImage.png") and the generated css will be background-image: url("Test.gif"), url("TestImage.png");
      Since:
      1.0.0
    • setImageUrls

      public void setImageUrls(UrlCss3Value... urlCss3Values)
      Parameters:
      urlCss3Values - urlCss3Values an array of UrlCss3Value objects.
      Since:
      1.0.0
    • getUrlCss3Values

      public List<UrlCss3Value> getUrlCss3Values()
      Returns:
      a new object of unmodifiable List<UrlCss3Value> whenever this method is called. Or null.
      Since:
      1.0.0
    • setAsInitial

      public void setAsInitial()
      Since:
      1.0.0
    • setAsInherit

      public void setAsInherit()
      Since:
      1.0.0
    • stateChanged

      public void stateChanged(Bean stateChangedObject)
      Specified by:
      stateChanged in interface StateChangeInformer<Bean>