Example usage for org.aspectj.weaver.patterns Pointcut KINDED

List of usage examples for org.aspectj.weaver.patterns Pointcut KINDED

Introduction

In this page you can find the example usage for org.aspectj.weaver.patterns Pointcut KINDED.

Prototype

byte KINDED

To view the source code for org.aspectj.weaver.patterns Pointcut KINDED.

Click Source Link

Usage

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

License:Open Source License

public void write(DataOutputStream s) throws IOException {
    s.writeByte(Pointcut.KINDED);
    kind.write(s);
    signature.write(s);
    writeLocation(s);
}