Package net.sourceforge.pmd.lang.metrics
Interface SigMask<T extends Signature<?>>
-
- Type Parameters:
T
- Type of signature this mask handles
public interface SigMask<T extends Signature<?>>
Generic signature mask.- Since:
- 6.0.0
- Author:
- Clément Fournier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
covers(T sig)
Returns true if the parameter is covered by this mask.
-
-
-
Method Detail
-
covers
boolean covers(T sig)
Returns true if the parameter is covered by this mask.- Parameters:
sig
- The signature to test.- Returns:
- True if the parameter is covered by this mask
-
-