Package org.pentaho.reporting.engine.classic.extensions.modules.sbarcodes

Examples of org.pentaho.reporting.engine.classic.extensions.modules.sbarcodes.SimpleBarcodesType


  {
    final Element element = new Element();
    applyElementName(element);
    applyStyle(element.getStyle());

    element.setElementType(new SimpleBarcodesType());
    if (getContent() != null)
    {
      element.setAttribute(AttributeNames.Core.NAMESPACE, AttributeNames.Core.VALUE, getContent());
    }
    if (getFieldname() != null)
View Full Code Here


public class SimpleBarcodesElementReadHandler extends AbstractElementReadHandler
{
  public SimpleBarcodesElementReadHandler()
      throws ParseException
  {
    super(new SimpleBarcodesType());
  }
View Full Code Here

  {
    final Element element = new Element();
    applyElementName(element);
    applyStyle(element.getStyle());

    element.setElementType(new SimpleBarcodesType());
    if (getContent() != null)
    {
      element.setAttribute(AttributeNames.Core.NAMESPACE, AttributeNames.Core.VALUE, getContent());
    }
    if (getFieldname() != null)
View Full Code Here

  {
    assertTrue(EnvironmentFactory.getEnvironment() instanceof HeadlessEnvironment);
    assertEquals("false", ClassicEngineBoot.getInstance().getGlobalConfig().getConfigProperty("org.pentaho.reporting.engine.classic.core.modules.output.table.base.VerboseCellMarkers"));
   
    Element e = new Element();
    e.setElementType(new SimpleBarcodesType());
    e.setAttribute(SimpleBarcodesAttributeNames.NAMESPACE, SimpleBarcodesAttributeNames.TYPE_ATTRIBUTE, "code128");
    e.setAttribute(AttributeNames.Core.NAMESPACE, AttributeNames.Core.VALUE, "S12_1099");
    e.getStyle().setStyleProperty(ElementStyleKeys.MIN_HEIGHT, 15.053f);
    e.getStyle().setStyleProperty(ElementStyleKeys.MIN_WIDTH, 129f);
    e.getStyle().setStyleProperty(ElementStyleKeys.PADDING_LEFT, 5f);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.extensions.modules.sbarcodes.SimpleBarcodesType

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.