Пример #1
0
  /**
   * Gets the SameParent attribute of the AddAbstractParent object
   *
   * @param one Description of Parameter
   * @param two Description of Parameter
   * @return The SameParent value
   */
  private boolean isSameParent(TypeSummary one, TypeSummary two) {
    if (isObject(one)) {
      return isObject(two);
    }

    if (isObject(two)) {
      return false;
    }

    return one.equals(two);
  }