public static final HorizontalRule horizontalRuleRelative(int height, int width) {
return new HorizontalRule(height, width, true);
}
public static final HorizontalRule horizontalRuleAbsolute(int height, int width) {
return new HorizontalRule(height, width, false);
}