Package net.sf.jasperreports.engine.query

Examples of net.sf.jasperreports.engine.query.QueryExecuterFactoryBundle


  public static JRQueryExecuterFactory getQueryExecuterFactory(String language) throws JRException
  {
    List bundles = ExtensionsEnvironment.getExtensionsRegistry().getExtensions(QueryExecuterFactoryBundle.class);
    for (Iterator it = bundles.iterator(); it.hasNext();)
    {
      QueryExecuterFactoryBundle bundle = (QueryExecuterFactoryBundle)it.next();
      JRQueryExecuterFactory factory = bundle.getQueryExecuterFactory(language);
      if (factory != null)
      {
        return factory;
      }
    }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.query.QueryExecuterFactoryBundle

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.