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

Examples of org.pentaho.reporting.engine.classic.core.devtools.ExpressionQueryTool


  private static final String META_NAMESPACE = "http://jfreereport.sourceforge.net/namespaces/engine/classic/metadata";

  public static void main(String[] args) throws IOException, IntrospectionException
  {
    ClassicEngineBoot.getInstance().start();
    ExpressionQueryTool eqt = new ExpressionQueryTool();
    eqt.processDirectory(null);
    final Class[] classes = eqt.getExpressions();

    final DefaultTagDescription dtd = new DefaultTagDescription();
    dtd.setNamespaceHasCData(META_NAMESPACE, false);

    final XmlWriter writer = new XmlWriter(new PrintWriter(System.out), dtd);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.devtools.ExpressionQueryTool

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.