summaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src/org/aspectj/weaver/tools/PointcutDesignatorHandler.java
blob: 63f4a81e260e6d938e62d95fb28f4230b1fa5056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* *******************************************************************
 * Copyright (c) 2005 Contributors.
 * All rights reserved. 
 * This program and the accompanying materials are made available 
 * under the terms of the Eclipse Public License v1.0 
 * which accompanies this distribution and is available at 
 * http://eclipse.org/legal/epl-v10.html 
 *  
 * Contributors: 
 *   Adrian Colyer			Initial implementation
 * ******************************************************************/
package org.aspectj.weaver.tools;


/**
 * The PointcutDesignator interface allows extension of the
 * AspectJ pointcut language so that third-party tools integrating
 * with AspectJ can add easily their own custom 
 * domain-specific designators and have them interoperate seamlessly
 * with the standard AspectJ designators.
 *
 * A pointcut designator can only be used for matching, not for
 * binding.
 */
public interface PointcutDesignatorHandler {

	/**
	 * The name of this pointcut designator. For example,
	 * if this designator handles a "bean(<NamePattern>)
	 * format designator, this method would return "bean".
	 * @return
	 */
	String getDesignatorName() ;
	
	/**
	 * Parse the given expression string
	 * and return a ContextBasedMatcher that can be used
	 * for matching.
	 * @param expression  the body of the pointcut expression. 
	 * For example, given the expression "bean(*DAO)" the parse
	 * method will be called with the argument "*DAO".
	 * @return a pointcut expression that can be used for
	 * matching.
	 * @throws IllegalArgumentException if the expression
	 * is ill-formed.
	 */
	ContextBasedMatcher parse(String expression);
	
}