コード例 #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;
  }