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.google.gerrit.client.changes.ChangeResources.java

public interface ChangeResources extends ClientBundle {
    @Source("removeReviewerNormal.png")
    public ImageResource removeReviewerNormal();

    @Source("removeReviewerPressed.png")
    public ImageResource removeReviewerPressed();

From source file com.google.gerrit.client.diff.Resources.java

/** Resources used by diff. */
interface Resources extends ClientBundle {
    Resources I = GWT.create(Resources.class);

    @Source("CommentBox.css")
    CommentBox.Style style();

From source file com.google.gerrit.client.GerritResources.java

public interface GerritResources extends ClientBundle {
    @Source("gerrit.css")
    GerritCss css();

    @Source("gwt_override.css")
    CssResource gwt_override();

From source file com.google.gerrit.client.Resources.java

public interface Resources extends ClientBundle {
    /** silk icons (CC-BY3.0): http://famfamfam.com/lab/icons/silk/ */
    @Source("note_add.png")
    ImageResource addFileComment();

    @Source("tag_blue_add.png")

From source file com.google.gerrit.common.ClientVersion.java

public interface ClientVersion extends ClientBundle {
    /** Version number of this client software build. */
    @Source("Version")
    TextResource version();
}

From source file com.google.gerrit.prettify.client.Resources.java

/** Loads the minimized form of prettify into the client. */
interface Resources extends ClientBundle {
    static final Resources I = GWT.create(Resources.class);

    @Source("prettify.css")
    CssResource prettify_css();

From source file com.google.gwt.sample.mobilewebapp.client.tablet.TabletResources.java

/**
 * Resources used by the tablet version of the app.
 */
public interface TabletResources extends ClientBundle {

    /**

From source file com.google.gwt.sample.showcase.client.ShowcaseImages.java

/**
 * The images used throughout the Showcase.
 */
public interface ShowcaseImages extends ClientBundle {
    ImageResource catI18N();

From source file com.google.gwt.sample.showcase.client.ShowcaseResources.java

/**
 * The images and styles used throughout the Showcase.
 */
public interface ShowcaseResources extends ClientBundle {
    ImageResource catI18N();

From source file com.google.gwt.sample.stockwatcher.client.LoginResources.java

public interface LoginResources extends ClientBundle {
    /**
      * Sample CssResource.
      */
    public interface MyCss extends CssResource {
        String blackText();