Package org.pentaho.reporting.engine.classic.core.modules.gui.common

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.common.StatusType


    return this;
  }

  public void setStatus(final StatusType type, final String text, final Throwable cause)
  {
    final StatusType oldStatusType = this.statusType;
    final String oldStatusText = this.statusText;
    final Throwable oldError = this.error;
    this.statusType = type;
    this.statusText = text;
    this.error = cause;
View Full Code Here


  {
    if (statusType == null)
    {
      throw new NullPointerException();
    }
    final StatusType oldType = statusType;
    this.statusType = type;
    firePropertyChange(STATUS_TYPE_PROPERTY, oldType, type); //$NON-NLS-1$
    updateTypeIcon(type);
  }
View Full Code Here

    return statusType;
  }

  public void setStatusType(final StatusType statusType)
  {
    final StatusType oldType = this.statusType;
    this.statusType = statusType;

    firePropertyChange(PreviewPane.STATUS_TYPE_PROPERTY, oldType, statusType);
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.gui.common.StatusType

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.