checkMaxSelectionCount static method

bool checkMaxSelectionCount(
  1. SelectionEntity entity
)

entity 传入当前点击的 Item !!! 在设置 isSelected = true之前进行 check。 返回 true 符合条件,false 不符合条件

Implementation

static bool checkMaxSelectionCount(SelectionEntity entity) {
  return entity.getLimitedRootSelectedChildCount() <
      entity.getLimitedRootMaxSelectedCount();
}