forked from fanruan/demo-export-xml
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.
18 lines
435 B
18 lines
435 B
7 years ago
|
package com.fr.plugin.export.xml.core;
|
||
|
|
||
|
import com.fr.base.Icon;
|
||
|
import com.fr.base.IconManager;
|
||
|
import com.fr.general.IOUtils;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Created by richie on 15/12/15.
|
||
|
*/
|
||
|
public class IconLoader {
|
||
|
|
||
|
public static String loadIcon() {
|
||
|
Icon icon = new Icon("xml", IOUtils.readImage("/com/fr/plugin/export/xml/images/xml16.png"));
|
||
|
IconManager.getIconManager().addIcon(icon, true);
|
||
|
return icon.getName();
|
||
|
}
|
||
|
}
|