Package com.webtrends.mobile.analytics.rim

Examples of com.webtrends.mobile.analytics.rim.WebtrendsDataCollector


        try {
          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());
  }
View Full Code Here

TOP

Related Classes of com.webtrends.mobile.analytics.rim.WebtrendsDataCollector

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.