Package com.webtrends.mobile.analytics.rim

Examples of com.webtrends.mobile.analytics.rim.WebtrendsDataCollector.Initialize()


          final String dcsid = (args[0].toString());
          final String appCategory = args[1].toString();
          config = new AnalyticsConfig(dcsid, appCategory);
          WebtrendsConfigurator.LoadConfigFile(config);
          WebtrendsDataCollector wtDC = WebtrendsDataCollector.getInstance();
          wtDC.Initialize();
        } catch (final Exception e) {
          System.err.println(e.getMessage());
        }
      }
      return UNDEFINED;
View Full Code Here


   * Creates a new MyApp object
   */
  public MyApp() {
    WebtrendsConfigurator.LoadConfigFile(new AnalyticsConfig());
    WebtrendsDataCollector wtDC = WebtrendsDataCollector.getInstance();
    wtDC.Initialize();
    // Push a screen onto the UI stack for rendering.
    pushScreen(new MyScreen());
  }

  private class AnalyticsConfig extends WebtrendsConfig {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.