Example usage for org.aspectj.weaver.patterns SignaturePattern read

List of usage examples for org.aspectj.weaver.patterns SignaturePattern read

Introduction

In this page you can find the example usage for org.aspectj.weaver.patterns SignaturePattern read.

Prototype

public static SignaturePattern read(VersionedDataInputStream s, ISourceContext context) throws IOException 

Source Link

Usage

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

License:Open Source License

public static Pointcut read(DataInputStream s, ISourceContext context) throws IOException {
    Shadow.Kind kind = Shadow.Kind.read(s);
    SignaturePattern sig = SignaturePattern.read(s, context);
    KindedPointcut ret = new KindedPointcut(kind, sig);
    ret.readLocation(context, s);/*from  w w w . j ava  2 s . c  o m*/
    return ret;
}