java

位置:IT落伍者 >> java >> 浏览文章

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


发布日期:2018年10月14日
 
Eclipse:功能演示、打包安装[2]
——此文章摘自《自己动手写开发工具基于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>]

               

上一篇:Eclipse:功能演示、打包安装[3]

下一篇:Eclipse:功能演示、打包安装[1]