lairtonb / jspf

Automatically exported from code.google.com/p/jspf
0 stars 0 forks source link

classpath://xxx.* should be supported #21

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago

Implement as classpath://* but filter for given name. 

Original issue reported on code.google.com by r.biedert on 16 Nov 2010 at 8:34

GoogleCodeExporter commented 8 years ago
Implemented an initial version.

classpath://x.*   means each class that is in the package x (e.g., x.A, x.B, 
but NOT the class x.y.A)
classpath://x.** means each class somewhere below x (e.g., x.A, x.B, x.y.A, ...)

A single '*' can be used multiple times (e.g., x.*.blah.*.mypackage), but '**' 
is allowed only once.

Original comment by r.biedert on 18 Nov 2010 at 3:14