mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-25 06:58:39 +00:00
17 lines
455 B
Java
Executable File
17 lines
455 B
Java
Executable File
package com.sap.sse.gwt.client;
|
|
|
|
import com.google.gwt.core.client.GWT;
|
|
import com.google.gwt.resources.client.ClientBundle;
|
|
import com.google.gwt.resources.client.ImageResource;
|
|
|
|
public interface IconResources extends ClientBundle {
|
|
|
|
public static final IconResources INSTANCE = GWT.create(IconResources.class);
|
|
|
|
@Source("images/remove.png")
|
|
ImageResource removeIcon();
|
|
|
|
@Source("images/edit.png")
|
|
ImageResource editIcon();
|
|
}
|