Package net.sf.jasperreports.engine.scriptlets

Examples of net.sf.jasperreports.engine.scriptlets.ScriptletFactoryContext


   * @return the scriptlets list
   * @throws JRException
   */
  protected List createScriptlets(Map parameterValues) throws JRException
  {
    ScriptletFactoryContext context = new ScriptletFactoryContext(parameterValues, this);
   
    scriptlets = new ArrayList();
   
    List factories = ExtensionsEnvironment.getExtensionsRegistry().getExtensions(ScriptletFactory.class);
    for (Iterator it = factories.iterator(); it.hasNext();)
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.scriptlets.ScriptletFactoryContext

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.