Package org.pentaho.reporting.engine.classic.core.style

Examples of org.pentaho.reporting.engine.classic.core.style.TableLayout


    final String tableLayout = attrs.getValue(getUri(), "table-layout");
    if (tableLayout != null)
    {
      try
      {
        final TableLayout o = (TableLayout) ConverterRegistry.toPropertyValue(tableLayout, TableLayout.class);
        styleSheet.setStyleProperty(BandStyleKeys.TABLE_LAYOUT, o);
      }
      catch (BeanException e)
      {
        throw new ParseException("Attribute 'table-layout' is not of an expected value.", getLocator());
View Full Code Here


    }
    if (style.isLocalKey(BandStyleKeys.TABLE_LAYOUT))
    {
      try
      {
        final TableLayout value = (TableLayout) style.getStyleProperty(BandStyleKeys.TABLE_LAYOUT);
        final String valueAsString = ConverterRegistry.toAttributeValue(value);
        bandStyleAtts.setAttribute(BundleNamespaces.STYLE, "table-layout", valueAsString);
      }
      catch (BeanException e)
      {
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.style.TableLayout

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.