Examples of FocusPoint


Examples of com.boxysystems.jgoogleanalytics.FocusPoint

    // tracking code
    final JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker(
        "Aurous App", "2.2.5", "UA-53956512-1");

    final FocusPoint focusPoint = new FocusPoint("AppStart");

    tracker.trackAsynchronously(focusPoint);
    Settings.loadSettings();

  }
View Full Code Here

Examples of com.boxysystems.jgoogleanalytics.FocusPoint

            });

        }
        if(trackingEnabled) {
            tracker = new JGoogleAnalyticsTracker("Leonardo","UA-17798312-2");
            mainApp = new FocusPoint("MainApp");
            tracker.setLoggingAdapter(new LoggingAdapter(){
                public void logError(String s) {
                    u.p("logging error: " + s);
                }
View Full Code Here

Examples of com.boxysystems.jgoogleanalytics.FocusPoint

    }

    public static void trackEvent(String event) {
        if(trackingEnabled) {
            tracker.trackAsynchronously(new FocusPoint(event,mainApp));
        }
    }
View Full Code Here

Examples of com.boxysystems.jgoogleanalytics.FocusPoint

            Main.saveSettings();
        } catch (Exception e) {
            e.printStackTrace();
        }
        if(Main.trackingEnabled) {
            Main.tracker.trackSynchronously(new FocusPoint("exit", Main.mainApp));
        }

        System.exit(0);
    }
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.server.jgoogleanalytics.FocusPoint

    // analytics.
    if (Configuration.gaTrackingID != null && SystemProperty.environment.value() == SystemProperty.Environment.Value.Production)
    {
      // The app is running on App Engine...
      FocusPoint focusApp = new FocusPoint("Admin");
      FocusPoint focusPoint = new FocusPoint("UserAdded", focusApp);
      JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker("ACRA Reporter", "0.1", Configuration.gaTrackingID);
      tracker.trackSynchronously(focusPoint);
    }
  }
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.server.jgoogleanalytics.FocusPoint

    // analytics.
    if (Configuration.gaTrackingID != null && SystemProperty.environment.value() == SystemProperty.Environment.Value.Production)
    {
      // The app is running on App Engine...
      FocusPoint focusApp = new FocusPoint("Admin");
      FocusPoint focusPoint = new FocusPoint("UserAdded", focusApp);
      JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker("ACRA Reporter", "0.1", Configuration.gaTrackingID);
      tracker.trackSynchronously(focusPoint);
    }

  }
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.server.jgoogleanalytics.FocusPoint

     
     
      if (SystemProperty.environment.value() == SystemProperty.Environment.Value.Production)
      {
        // analytics.
        FocusPoint focusApp = new FocusPoint(apppackage);
        FocusPoint focusPoint = new FocusPoint("MappingAdded", focusApp);
        FocusPoint focusVer = new FocusPoint(version, focusPoint);
        if (!Utils.isEmpty(appUser.AnalyticsTrackingId))
        {
          JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker("ACRA Reporter", "0.1", appUser.AnalyticsTrackingId);
          tracker.trackSynchronously(focusVer);
        }
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.server.jgoogleanalytics.FocusPoint

      tidyMapList(appPackage);

      if (SystemProperty.environment.value() == SystemProperty.Environment.Value.Production)
      {
        // analytics.
        FocusPoint focusApp = new FocusPoint(apppackage);
        FocusPoint focusPoint = new FocusPoint("MappingAdded", focusApp);
        FocusPoint focusVer = new FocusPoint(version, focusPoint);
        if (!Utils.isEmpty(appUser.AnalyticsTrackingId))
        {
          JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker("ACRA Reporter", "0.1", appUser.AnalyticsTrackingId);
          tracker.trackSynchronously(focusVer);
        }
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.server.jgoogleanalytics.FocusPoint

        // analytics.
        if (SystemProperty.environment.value() == SystemProperty.Environment.Value.Production)
        {
          // The app is running on App Engine...
          FocusPoint focusApp = new FocusPoint(basicInfo.PACKAGE_NAME);
          FocusPoint focusPoint = new FocusPoint("ErrorReport", focusApp);
          FocusPoint focusVer = new FocusPoint(basicInfo.APP_VERSION_NAME, focusPoint);
          if (!Utils.isEmpty(appUser.AnalyticsTrackingId))
          {
            JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker("ACRA Reporter", "0.1", appUser.AnalyticsTrackingId);
            tracker.trackSynchronously(focusVer);
          }
View Full Code Here

Examples of org.atmosphere.util.analytics.FocusPoint

                            }
                            urlConnection.disconnect();
                        }

                        JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker(ModuleDetection.detect(), Version.getRawVersion(), "UA-31990725-1");
                        tracker.trackSynchronously(new FocusPoint(container, new FocusPoint("Atmosphere")));

                    } catch (Throwable e) {
                    }
                }
            };
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.