Files
sailing-analytics/java/com.sap.sse.gwt/src/com/sap/sse/gwt/client/IconResources.java
T
Axel Uhl 2b35cd5a62 moved editIcon to sse; implemented first version of a RolesPanel
Change-Id: I1cccf21abb2fcca3619d827a27eda2ca0625f54e
2017-12-13 11:26:37 +01:00

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();
}