Example usage for com.google.gwt.resources.client ClientBundle interface-usage

List of usage examples for com.google.gwt.resources.client ClientBundle interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.resources.client ClientBundle interface-usage.

Usage

From source file com.ninuku.kinderfun.client.theme.CustomBundleAndroid.java

public interface CustomBundleAndroid extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/android/groupinglist.css", "css/progressbar.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleAndroidTablet.java

public interface CustomBundleAndroidTablet extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/android/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleBlackberry.java

public interface CustomBundleBlackberry extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/android/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleDesktop.java

public interface CustomBundleDesktop extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/ipad/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleIpad.java

public interface CustomBundleIpad extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/ipad/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleIpadRetina.java

public interface CustomBundleIpadRetina extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/ipad/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleIPhone.java

public interface CustomBundleIPhone extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/iphone/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.ninuku.kinderfun.client.theme.CustomBundleRetina.java

public interface CustomBundleRetina extends ClientBundle, MGWTClientBundle {

    @Source({ "com/googlecode/mgwt/ui/client/theme/base/css/groupinglist.css",
            "com/googlecode/mgwt/ui/client/theme/base/css/iphone/groupinglist.css", "css/groupinglist.css" })
    GroupingList getGroupingList();

From source file com.novartis.pcs.ontology.webapp.client.image.ImageResources.java

public interface ImageResources extends ClientBundle {
    public final ImageResources INSTANCE = GWT.create(ImageResources.class);

    @Source("search_small_off.png")
    public ImageResource searchIcon();

From source file com.npisoft.officine.client.application.resources.ExampleImages.java

public interface ExampleImages extends ClientBundle {

    public ExampleImages INSTANCE = GWT.create(ExampleImages.class);

    @Source("add16.gif")
    ImageResource add16();