is it possible to set up exclusion/inclusion filter in Flash Builder to have wildcard in the beginning?
Is it possible to set up 开发者_JAVA技巧exclusion/inclusion filters in profiler to have wildcard character in the beginning?
For example, let's say we have packages org.foo, org.bar, and com.foo and i want to filter for any package names that has foo in it. In this case I want something like .foo..* but that doesn't seem to work. is there any way to do what I want? or do i have to set up filter for every package that has foo in it?
The package declaration is pretty much just the folder structure of where the package is located. So if i understand what you are asking for is a way to load all "foo" classes in a directory branch. The answer is no.
However, The other thing you can do is load all packages in the "foo" directory with "com.foo.*" this will load all "foo"s, but you still need to know where "foo" is located.
精彩评论