예제 #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;
  }