Example usage for com.google.gwt.gdata.client GData loadGDataApi

List of usage examples for com.google.gwt.gdata.client GData loadGDataApi

Introduction

In this page you can find the example usage for com.google.gwt.gdata.client GData loadGDataApi.

Prototype

public static void loadGDataApi(String key, Runnable onLoad, GDataPackage... packages) 

Source Link

Document

Initializes the target version of the GData API using the AjaxLoader.

Usage

From source file:com.google.gwt.gdata.sample.hellogdata.client.AccountsAuthSubAuthenticationDemo.java

License:Apache License

/**
 * Create the main content panel for this demo and call
 * showAuthSubStatus to display the authentication status
 * for each GData system./* w w w. j  av a 2 s.  c  om*/
 */
public AccountsAuthSubAuthenticationDemo() {
    mainPanel = new FlexTable();
    mainPanel.setCellPadding(4);
    mainPanel.setCellSpacing(0);
    initWidget(mainPanel);
    /* 
     * Here we load the default package to make AuthSub available.
     * For AuthSub any of the GData packages will do.
     * */
    if (!GData.isLoaded(HelloGData.defaultPackage)) {
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, HelloGData.defaultPackage);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.AnalyticsBounceRateDemo.java

License:Apache License

/**
 * Setup the Analytics service and create the main content panel.
 * If the user is not logged on to Analytics display a message,
 * otherwise start the demo by retrieving the Analytics accounts.
 *//*from w  w w .j a v a2 s.  com*/
public AnalyticsBounceRateDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.ANALYTICS)) {
        showStatus("Loading the GData Analytics package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.ANALYTICS);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.AnalyticsLanguagesDemo.java

License:Apache License

/**
 * Setup the Analytics service and create the main content panel.
 * If the user is not logged on to Analytics display a message,
 * otherwise start the demo by retrieving the Analytics accounts.
 *///from  ww  w .  j av  a2s.  com
public AnalyticsLanguagesDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.ANALYTICS)) {
        showStatus("Loading the GData Analytics package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.ANALYTICS);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.AnalyticsTopPagesDemo.java

License:Apache License

/**
 * Setup the Analytics service and create the main content panel.
 * If the user is not logged on to Analytics display a message,
 * otherwise start the demo by retrieving the Analytics accounts.
 *//*  w w  w. ja  v  a 2s  . co m*/
public AnalyticsTopPagesDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.ANALYTICS)) {
        showStatus("Loading the GData Analytics package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.ANALYTICS);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.AnalyticsTopSearchesDemo.java

License:Apache License

/**
 * Setup the Analytics service and create the main content panel.
 * If the user is not logged on to Analytics display a message,
 * otherwise start the demo by retrieving the Analytics accounts.
 *//*from  ww  w . j a  v  a2 s . co  m*/
public AnalyticsTopSearchesDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.ANALYTICS)) {
        showStatus("Loading the GData Analytics package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.ANALYTICS);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.AnalyticsVisitsDemo.java

License:Apache License

/**
 * Setup the Analytics service and create the main content panel.
 * If the user is not logged on to Analytics display a message,
 * otherwise start the demo by retrieving the Analytics accounts.
 *//*  www .  j ava2 s. co  m*/
public AnalyticsVisitsDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.ANALYTICS)) {
        showStatus("Loading the GData Analytics package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.ANALYTICS);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.AnalyticsYourAccountsDemo.java

License:Apache License

/**
 * Setup the Analytics service and create the main content panel.
 * If the user is not logged on to Analytics display a message,
 * otherwise start the demo by retrieving the Analytics accounts.
 *//*from   w ww  .j a  va2  s  .c  o  m*/
public AnalyticsYourAccountsDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.ANALYTICS)) {
        showStatus("Loading the GData Analytics package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.ANALYTICS);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.BloggerCreateBlogPostCommentDemo.java

License:Apache License

/**
 * Setup the Blogger service and create the main content panel.
 * If the user is not logged on to Blogger display a message,
 * otherwise start the demo by retrieving the user's blogs.
 *//*from  ww w. j  a v a  2s.  c o m*/
public BloggerCreateBlogPostCommentDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.BLOGGER)) {
        showStatus("Loading the GData Blogger package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.BLOGGER);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.BloggerCreateBlogPostDemo.java

License:Apache License

/**
 * Setup the Blogger service and create the main content panel.
 * If the user is not logged on to Blogger display a message,
 * otherwise start the demo by retrieving the user's blogs.
 *//* ww w.j ava 2 s.  c o m*/
public BloggerCreateBlogPostDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.BLOGGER)) {
        showStatus("Loading the GData Blogger package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.BLOGGER);
    } else {
        startDemo();
    }
}

From source file:com.google.gwt.gdata.sample.hellogdata.client.BloggerDeleteBlogPostCommentDemo.java

License:Apache License

/**
 * Setup the Blogger service and create the main content panel.
 * If the user is not logged on to Blogger display a message,
 * otherwise start the demo by retrieving the user's blogs.
 *///from   ww w.j av  a2  s . co m
public BloggerDeleteBlogPostCommentDemo() {
    mainPanel = new FlexTable();
    initWidget(mainPanel);
    if (!GData.isLoaded(GDataSystemPackage.BLOGGER)) {
        showStatus("Loading the GData Blogger package...", false);
        GData.loadGDataApi(GDATA_API_KEY, new Runnable() {
            public void run() {
                startDemo();
            }
        }, GDataSystemPackage.BLOGGER);
    } else {
        startDemo();
    }
}