Example #1
0
 /**
  * @param pUser the user profile
  * @return true if the user profile has this MP, else return false.
  */
 public boolean isInUserProfile(UserProfile pUser) {
   if (pUser.getMPs().contains(this)) {
     return true;
   }
   return false;
 }