Package net.sf.jasperreports.engine.type

Examples of net.sf.jasperreports.engine.type.LineDirectionEnum


  /**
   *
   */
  public void setDirection(LineDirectionEnum directionValue)
  {
    LineDirectionEnum old = this.directionValue;
    this.directionValue = directionValue;
    getEventSupport().firePropertyChange(PROPERTY_DIRECTION, old, this.directionValue);
  }
View Full Code Here


  /**
   *
   */
  public void setDirection(LineDirectionEnum directionValue)
  {
    LineDirectionEnum old = this.directionValue;
    this.directionValue = directionValue;
    getEventSupport().firePropertyChange(JRBaseLine.PROPERTY_DIRECTION, old, this.directionValue);
  }
View Full Code Here

  {
    JasperDesign jasperDesign = (JasperDesign)digester.peek(digester.getCount() - 2);

    JRDesignLine line = new JRDesignLine(jasperDesign);

    LineDirectionEnum direction = LineDirectionEnum.getByName(atts.getValue(JRXmlConstants.ATTRIBUTE_direction));
    if (direction != null)
    {
      line.setDirection(direction);
    }
View Full Code Here

  {
    JasperPrint jasperPrint = (JasperPrint)digester.peek(digester.getCount() - 2);

    JRBasePrintLine line = new JRBasePrintLine(jasperPrint.getDefaultStyleProvider());

    LineDirectionEnum direction = LineDirectionEnum.getByName(atts.getValue(JRXmlConstants.ATTRIBUTE_direction));
    if (direction != null)
    {
      line.setDirection(direction);
    }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.type.LineDirectionEnum

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.