——此文章摘自《自己动手写开发工具
基于Eclipse的工具开发》定价
¥
特价
¥
详细>>http://track
linktech
cn/?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>]