Package org.pentaho.platform.api.engine

Examples of org.pentaho.platform.api.engine.IContentGeneratorInfo


      String title = getProperty( node, "title" ); //$NON-NLS-1$
      String description = getProperty( node, "description" ); //$NON-NLS-1$
      try {
        if ( id != null && type != null && className != null && title != null ) {
          try {
            IContentGeneratorInfo info =
                createContentGenerator( plugin, id, title, description, type, url, className, session, folder );
            plugin.addContentGenerator( info );
          } catch ( Exception e ) {
            PluginMessageLogger.add( Messages.getInstance().getString(
                "PluginManager.USER_CONTENT_GENERATOR_NOT_REGISTERED", id, folder ) ); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.pentaho.platform.api.engine.IContentGeneratorInfo

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.