Package org.pentaho.reporting.engine.classic.core.modules.output.table.html.helper

Examples of org.pentaho.reporting.engine.classic.core.modules.output.table.html.helper.DefaultStyleBuilder


      return writer;
    }

    private StyleBuilder.StyleCarrier[] productImpliedStyles()
    {
      DefaultStyleBuilder builder = new DefaultStyleBuilder(new DefaultStyleBuilderFactory());
      builder.append(StyleBuilder.CSSKeys.COLOR, "black");
      builder.append(StyleBuilder.CSSKeys.FONT_SIZE, "10", "pt");
      builder.appendRaw(StyleBuilder.CSSKeys.FONT_FAMILY, "\"Arial Unicode MS\"");
      builder.append(StyleBuilder.CSSKeys.FONT_WEIGHT, "normal");
      builder.append(StyleBuilder.CSSKeys.FONT_STYLE, "normal");
      builder.append(StyleBuilder.CSSKeys.TEXT_DECORATION, "none");
      builder.append(StyleBuilder.CSSKeys.TEXT_ALIGN, "right");
      builder.append(StyleBuilder.CSSKeys.WORD_SPACING, "0", "pt");
      builder.append(StyleBuilder.CSSKeys.LETTER_SPACING, "0", "pt");
      builder.append(StyleBuilder.CSSKeys.WHITE_SPACE, "pre");
      return builder.toArray();
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.output.table.html.helper.DefaultStyleBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.