/**
   * Removes a collection of property models from the container.
   *
   * @param propertyCollection a collection of property models
   */
  @Override
  public void removeAll(Collection<JSONMetaDataObject> propertyCollection) {
    super.removeAll(propertyCollection);

    properties.removeAll(propertyCollection);
  }