Examples of SubReportParameterChange


Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

      throw new NullPointerException();
    }

    final ParameterMapping[] oldMappings = getExportMappings();
    exportParameters.put(outerName, sourceColumn);
    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.EXPORT, oldMappings, getExportMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

    {
      throw new NullPointerException();
    }
    final ParameterMapping[] oldMappings = getExportMappings();
    exportParameters.remove(outerName);
    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.EXPORT, oldMappings, getExportMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

    {
      final ParameterMapping mapping = mappings[i];
      exportParameters.put(mapping.getName(), mapping.getAlias());
    }

    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.EXPORT, oldMappings, getExportMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

      throw new NullPointerException();
    }
    final ParameterMapping[] oldMappings = getInputMappings();

    inputParameters.put(sourceColumn, outerName);
    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.INPUT, oldMappings, getInputMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

    }

    final ParameterMapping[] oldMappings = getInputMappings();

    inputParameters.remove(sourceColumn);
    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.INPUT, oldMappings, getInputMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

  public void clearInputParameters()
  {
    final ParameterMapping[] oldMappings = getInputMappings();

    inputParameters.clear();
    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.INPUT, oldMappings, getInputMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

  {
    final ParameterMapping[] oldMappings = getExportMappings();

    exportParameters.clear();
    notifyNodePropertiesChanged();
    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.EXPORT, oldMappings, getExportMappings()));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

    {
      final ParameterMapping mapping = mappings[i];
      inputParameters.put(mapping.getAlias(), mapping.getName());
    }

    notifyNodePropertiesChanged(new SubReportParameterChange
        (SubReportParameterChange.Type.INPUT, oldMappings, getInputMappings()));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.