示例#1
0
文件: Role.java 项目: scubasam/ERS
  public boolean equals(Role otherRole) {
    if (otherRole == null) return false;

    if (this.getRole().equals(otherRole.getRole())) return true;
    else return false;
  }