文件名称:eclipse get set 自动添加注释(版本eclipse-3.7.2)
文件大小:16KB
文件格式:CLASS
更新时间:2021-05-08 09:38:16
eclipse get set 自动添加注释
/** 类ID */ private Integer id; /** * 获取 类ID * * @return id 类ID */ public Integer getId() { return id; } /** * 设置 类ID * * @param id * 类ID */ public void setId(Integer id) { this.id = id; }