Package org.pentaho.reporting.designer.core.util

Examples of org.pentaho.reporting.designer.core.util.ReportDesignerFunctionParameterEditor


      final String editor = configuration.getConfigProperty(key);
      final FunctionParameterEditor fnEditor =
          ObjectUtilities.loadAndInstantiate(editor, GUIUtils.class, FunctionParameterEditor.class);
      if (fnEditor instanceof ReportDesignerFunctionParameterEditor)
      {
        final ReportDesignerFunctionParameterEditor rfn = (ReportDesignerFunctionParameterEditor) fnEditor;
        rfn.setReportDesignerContext(designerContext);
      }
      this.editorPanel.setEditor(function, fnEditor);
    }
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.util.ReportDesignerFunctionParameterEditor

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.