aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs167/pr296533/testing/ResourceCache.aj
blob: 27aa5a9da125c2addb3fc3a1ef6d2a5a8e4ed7da (plain)
1
2
3
4
5
6
7
8
9
10
package testing;

public aspect ResourceCache extends AbstractCache<String,Resource> {

	public pointcut cachePoint(String key):
		args(key) &&
		execution(public Resource ResourceManager.lookupResource(String));


}