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

Examples of org.pentaho.reporting.engine.classic.core.designtime.compat.CompatibilityConverterRegistry


  protected Document createDescriptionText() throws IOException, BadLocationException
  {
    final StringBuilder sb = new StringBuilder(10000);
    sb.append("<html><head></head><body>\n");//NON-NLS
    final CompatibilityConverterRegistry registry = CompatibilityConverterRegistry.getInstance();
    final CompatibilityConverter[] converters = registry.getConverters();
    for (int i = 0; i < converters.length; i++)
    {
      final CompatibilityConverter converter = converters[i];
      if (toVersion > 0 && converter.getTargetVersion() <= toVersion)
      {
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.designtime.compat.CompatibilityConverterRegistry

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.