Class StrokeStyleCssConverter

java.lang.Object
org.jhotdraw8.css.converter.AbstractCssConverter<CssStrokeStyle>
org.jhotdraw8.draw.css.converter.StrokeStyleCssConverter
All Implemented Interfaces:
org.jhotdraw8.base.converter.Converter<CssStrokeStyle>, CssConverter<CssStrokeStyle>

public class StrokeStyleCssConverter extends AbstractCssConverter<CssStrokeStyle>
Allows to set all stroke properties at once.
     StrokeStyle := {Options};
     Options = ( Type | Linecap | Linejoin | Miterlimit | Dashoffset | Dasharray );
     Type = "type(" , ("inside"|"outside"|"centered"), ")";
     Linecap = "linecap(",("square"|"butt"|"round"),")";
     Linejoin = "linecap(",("miter"|"bevel"|"round"),")";
     Miterlimit = "miterlimit(",Size,")";
     Dashoffset = "dashoffset(",Size,")";
     Dasharray = "dasharray(",Size,{Size},")";