Package org.pentaho.reporting.engine.classic.core.designtime

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


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

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

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

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

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

    }

    final ParameterMapping[] oldMappings = getInputMappings();

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

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

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

  {
    final ParameterMapping[] oldMappings = getExportMappings();

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

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

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

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.designtime.SubReportParameterChange

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.