forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
431 B
16 lines
431 B
package leaf.ui;
|
|
|
|
public interface LeafUIConstants
|
|
{
|
|
public static final String ICON_NAME_CREATE = "leaf/ui/icons/create.png";
|
|
|
|
public static final String ICON_NAME_EDIT = "leaf/ui/icons/edit.png";
|
|
|
|
public static final String ICON_NAME_REMOVE = "leaf/ui/icons/delete.png";
|
|
|
|
public static final String ICON_NAME_SAVE = "leaf/ui/icons/save.png";
|
|
|
|
public static final String ICON_NAME_REVERT = "leaf/ui/icons/revert.png";
|
|
|
|
}
|