final String value = (String) style.getStyleProperty(ElementStyleKeys.HREF_WINDOW);
bandStyleAtts.setAttribute(BundleNamespaces.STYLE, "href-window", value);
}
if (style.isLocalKey(ElementStyleKeys.BOX_SIZING))
{
final BoxSizing value = (BoxSizing) style.getStyleProperty(ElementStyleKeys.BOX_SIZING);
bandStyleAtts.setAttribute(BundleNamespaces.STYLE, "box-sizing", value.toString());
}
if (style.isLocalKey(ElementStyleKeys.VISIBLE))
{
final boolean value = style.getBooleanStyleProperty(ElementStyleKeys.VISIBLE);
bandStyleAtts.setAttribute(BundleNamespaces.STYLE, "visible", String.valueOf(value));