/** * Checks if the element is hidden by a filter at least. * * @param element The element. * @return true if it is hidden, false otherwise. * @since 1.3 */ public boolean isHiddenInMyContext(DiffElement element) { return OrderingUtils.isHidden(element, selectedFilters); }
/** * Checks if the element is hidden by a filter at least. * * @deprecated Use ParameterizedStructureContentProvider#isHiddenInMyContext(DiffElement) instead * of it. * @param element The element. * @return true if it is hidden, false otherwise. */ @Deprecated public static boolean isHidden(DiffElement element) { return OrderingUtils.isHidden(element, mSelectedFilters); }