Example usage for org.aspectj.weaver.patterns TypePattern ELLIPSIS

List of usage examples for org.aspectj.weaver.patterns TypePattern ELLIPSIS

Introduction

In this page you can find the example usage for org.aspectj.weaver.patterns TypePattern ELLIPSIS.

Prototype

TypePattern ELLIPSIS

To view the source code for org.aspectj.weaver.patterns TypePattern ELLIPSIS.

Click Source Link

Usage

From source file:org.caesarj.compiler.aspectj.CaesarWrapperPatternParser.java

License:Open Source License

/**
 * Creates a signator which select constructors:
 * /*from w  w w.j av  a2s  .  co  m*/
 *   * $constructor(..)
 *   
 * @return
 */
protected SignaturePattern createConstructorSignature() {

    return new SignaturePattern(Member.METHOD, ModifiersPattern.ANY, TypePattern.ANY, TypePattern.ANY,
            new NamePattern("$constructor"), new TypePatternList(new TypePattern[] { TypePattern.ELLIPSIS }),
            ThrowsPattern.ANY);
}