Package org.pentaho.reporting.ui.datasources.jdbc.connection

Examples of org.pentaho.reporting.ui.datasources.jdbc.connection.JdbcConnectionDefinition


    setTitle(Messages.getString("SimpleLegacyMdxDataSourceEditor.Title"));
  }

  protected AbstractMDXDataFactory createDataFactory()
  {
    final JdbcConnectionDefinition connectionDefinition =
        (JdbcConnectionDefinition) getDialogModel().getConnections().getSelectedItem();

    if (connectionDefinition instanceof JndiConnectionDefinition)
    {
      final JndiConnectionDefinition jcd = (JndiConnectionDefinition) connectionDefinition;
View Full Code Here


    setPreviewPossible(false);

    final JdbcConnectionDefinition[] jdbcConnectionDefinitions = connectionDefinitionManager.getSources();
    for (int i = 0; i < jdbcConnectionDefinitions.length; i++)
    {
      final JdbcConnectionDefinition definition = jdbcConnectionDefinitions[i];
      connections.addElement(definition);
    }
    connections.setSelectedItem(null);
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.ui.datasources.jdbc.connection.JdbcConnectionDefinition

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.