com.agnie.gwt.common.client.widget.LeftErrorPanResources.java Source code

Java tutorial

Introduction

Here is the source code for com.agnie.gwt.common.client.widget.LeftErrorPanResources.java

Source

/*******************************************************************************
 * Copyright (c) 2014 Agnie Technologies.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/gpl.html
 * 
 * Contributors:
 *     Agnie Technologies - initial API and implementation
 ******************************************************************************/
package com.agnie.gwt.common.client.widget;

import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.resources.client.ClientBundle.Source;

public interface LeftErrorPanResources extends ClientBundle {
    public static LeftErrorPanResources INSTANCE = GWT.create(LeftErrorPanResources.class);

    @Source("LeftErrorPanCss.css")
    LeftErrorPanCss css();

    @Source("error-small.png")
    ImageResource error();

    @Source("cross-small.png")
    ImageResource closeBtn();

    @Source("LeftErrorPanTriangle.png")
    ImageResource textBoxTriangle();

}