Package net.sf.jasperreports.engine.component

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


   * @param component the component instance
   * @see #getComponent()
   */
  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;
    getEventSupport().firePropertyChange(PROPERTY_COMPONENT, old, this.component);
View Full Code Here

TOP

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

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.