package com.onaro.sanscreen.client.view.changes; /** * The interface of a type filter. */ public interface TypeFilter { /** * Ask the filter a change group should be displyed or not. * @param changeGroup the change-group that should be tested * @return false if the change group shouldn't be displayed */ public boolean shouldBeDisplayed(ChangeGroup changeGroup); }