com.google.gwt.sample.stockwatcher.client.LoginResources.java Source code

Java tutorial

Introduction

Here is the source code for com.google.gwt.sample.stockwatcher.client.LoginResources.java

Source

package com.google.gwt.sample.stockwatcher.client;

import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.CssResource;

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

        String redText();

        String loginButton();

        String box();

        String background();
    }

    @Source("Login.css")
    MyCss style();

}