| Parameter | Matches |
*
|
any package name |
pack1.pack2
|
only pack1.pack2
|
pack1.p*
|
any subpackages of pack1 that start with "p"
|
public or package.
Only classes matching the specified access modifier will match the exclusion parameter.
| Parameter | Matches |
*
|
any class name |
Class1
|
only Class1
|
C*
|
any class name starting with "C"
|