隨筆 - 6  文章 - 129  trackbacks - 0
          <2025年6月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345

          常用鏈接

          留言簿(14)

          隨筆檔案(6)

          文章分類(467)

          文章檔案(423)

          相冊

          收藏夾(18)

          JAVA

          搜索

          •  

          積分與排名

          • 積分 - 827222
          • 排名 - 49

          最新評論

          閱讀排行榜

          評論排行榜

          package hellorcp.tool;

          import java.util.HashMap;
          import java.util.Iterator;
          import java.util.Map;

          import org.eclipse.swt.graphics.Image;
          import org.eclipse.ui.plugin.AbstractUIPlugin;

          public class CacheImage {

           private final Map<String, Image> imageMap = new HashMap<String, Image>();
           private static CacheImage INSTANCE = null;
           
           private CacheImage(){
            
           }
           //單例
           public static CacheImage getInstance() {
            if(INSTANCE == null)
             INSTANCE = new CacheImage();
            return INSTANCE;
           }
           //獲得圖片
           public Image getImage(String applicationId, String imageName) {
            if(imageName == null)
             return null;
            Image image = imageMap.get(imageName);
            if(image == null) {
             image = AbstractUIPlugin.imageDescriptorFromPlugin(applicationId,
          imageName).createImage();//應用程序的ID,圖片的路徑
             imageMap.put(imageName, image);
            }
            return image;
           }
           //dispose資源
           public void dispose() {
            Iterator<Image> iterator = imageMap.values().iterator();
            while(iterator.hasNext())
             iterator.next().dispose();
            imageMap.clear();
           }
          }



          posted on 2008-12-05 23:54 Ke 閱讀(898) 評論(0)  編輯  收藏 所屬分類: eclipse RCP
          主站蜘蛛池模板: 凤山县| 忻州市| 扶风县| 巴里| 遂溪县| 东乡县| 蒲江县| 保德县| 武义县| 达日县| 肥乡县| 福安市| 泰宁县| 灌阳县| 大关县| 盈江县| 旅游| 视频| 治多县| 弥勒县| 清远市| 桐柏县| 兰溪市| 宁安市| 中宁县| 揭东县| 沧源| 镇远县| 逊克县| 雷山县| 晋中市| 怀宁县| 杂多县| 上高县| 都江堰市| 岑溪市| 德格县| 永登县| 银川市| 阿坝| 突泉县|