熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

Eclipse:功能演示、打包安裝[2]

2022-06-13   來源: Java開源技術 
    ——此文章摘自《自己動手寫開發工具基於Eclipse的工具開發》定價 特價 詳細>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave>

    單擊【完成】按鈕就可以看到自動生成了如下的代碼
    package comcownewenumtest;
    public class ColorEnum
    {
        private String type;  
        public ColorEnum RED = new ColorEnum(RED); 
        public ColorEnum YELLOW = new ColorEnum(YELLOW);
        public ColorEnum BLUE = new ColorEnum(BLUE);
        public ColorEnum BLACK = new ColorEnum(BLACK); 
        public ColorEnum GREEN = new ColorEnum(GREEN); 
      
        private ColorEnum(String type)
        {
            super();
            thistype = type;
        }
        public int hashCode()
        {
            final int PRIME = ;
            int result = ;
            result = PRIME * result + ((type == null) ? : typehashCode());
            return result;
        }
        public boolean equals(Object obj)
        {
            if (this == obj)
                return true;
            if (obj == null)
                return false;
            if (getClass() != objgetClass())
                return false;
            final ColorEnum other = (ColorEnum) obj;
            if (type == null)
            {
                if (othertype != null)
                    return false;
            } else if (!typeequals(othertype))
                return false;
            return true;
        }
    }

    這裡運行的例子是運行在插件開發環境中的如果要是給用戶使用的話必須將其導出成為可以部署的安裝包

    導出生成可以部署的安裝包是非常簡單的只需要在【包資源管理器】中右擊在彈出的快捷菜單中選擇【導出】命令選中【導出】向導頁中的【插件開發】目錄下的可部署的插件和段單擊【下一步】按鈕如圖所示

right>[http://developcsaicn/Java_Eclipse/htm>]  []  [http://developcsaicn/Java_Eclipse/htm>]  


From:http://tw.wingwit.com/Article/program/Java/ky/201311/29078.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.