Package net.sf.jasperreports.engine.component

Examples of net.sf.jasperreports.engine.component.BaseComponentContext


    this.barHeight = barcode.getBarHeight();
    this.evaluationTimeValue= barcode.getEvaluationTimeValue();
    this.evaluationGroup = barcode.getEvaluationGroup();
    this.rotation = barcode.getOwnRotation();
   
    this.context = new BaseComponentContext(barcode.getContext(), objectFactory);
  }
View Full Code Here


  public void setComponent(Component component)
  {
    ContextAwareComponent contextAwareComponent = component instanceof ContextAwareComponent ? (ContextAwareComponent)component : null;
    if (contextAwareComponent != null)
    {
      BaseComponentContext context = new BaseComponentContext();
      context.setComponentElement(this);
      contextAwareComponent.setContext(context);
    }
   
    Object old = this.component;
    this.component = component;
View Full Code Here

  public HtmlComponent(HtmlComponent component, JRBaseObjectFactory objectFactory) {
    this.scaleType = component.getScaleType();
    this.horizontalAlign = component.getHorizontalAlign();
    this.verticalAlign = component.getVerticalAlign();
    this.htmlContentExpression = objectFactory.getExpression(component.getHtmlContentExpression());
    this.context = new BaseComponentContext(component.getContext(), objectFactory);
    this.evaluationTime= component.getEvaluationTime();
    this.evaluationGroup = component.getEvaluationGroup();
  }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.component.BaseComponentContext

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.