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

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

Introduction

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

Prototype

public boolean isIncludeSubtypes() 

Source Link

Usage

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

License:Open Source License

/**
 * Creates a mixin type pattern (a CaesarWildTypePatter) for this type, using the 
 * createMixinNamePatterns method./*from   www  .j  a  v a  2 s.com*/
 * 
 * @param type the type
 * @return a mixin pattern to the type
 */
protected TypePattern createMixinType(TypePattern type) {

    return new CaesarWildTypePattern(createMixinNamePatterns(type), type.isIncludeSubtypes(), 0);
}