Просмотр исходного кода

testcode for 162135

tags/V1_5_3rc1
aclement 17 лет назад
Родитель
Сommit
2d20069013

+ 25
- 0
tests/bugs153/pr162135/Foo.java Просмотреть файл

@@ -0,0 +1,25 @@
import java.lang.reflect.Field;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect public class Foo {

public void m() {
new RuntimeException("hello");
}
public static void main(String[] argv) {
}
@Pointcut("call(Throwable+.new(String, ..)) && this(caller) && if()")
public static boolean exceptionInitializer(Object caller) {
return true;
}

@Around("exceptionInitializer(caller)")
public Object annotateException(ProceedingJoinPoint jp, Object caller) {
return null;
}
}

+ 46
- 0
tests/bugs153/pr162135/Foo2.java Просмотреть файл

@@ -0,0 +1,46 @@
//package com.foliofn.infra.logging;

import java.lang.reflect.Field;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect public class Foo2 {
// aspect Foo {

public void m() {
new RuntimeException("hello");
}
public static void main(String[] argv) {
}
// Object around(Object caller): call(Throwable+.new(String, ..)) && this(caller) && if(true==true) {
@Around("call(Throwable+.new(String, ..)) && this(caller)")
public Object annotateException(ProceedingJoinPoint jp, Object caller) {
return null;
}
// @Pointcut("call(Throwable+.new(String, ..)) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer( exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, String exceptionMessage) {
// return null;
// }
// @Pointcut("call(Throwable+.new(String, ..)) && this(caller) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(Object caller, String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer(caller, exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, Object caller, String exceptionMessage) {
// return null;
// }

}

+ 44
- 0
tests/bugs153/pr162135/Foo3.java Просмотреть файл

@@ -0,0 +1,44 @@
//package com.foliofn.infra.logging;

import java.lang.reflect.Field;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

//@Aspect public class Foo {
aspect Foo3 {

public void m() {
new RuntimeException("hello");
}
public static void main(String[] argv) {
}
Object around(Object caller): call(Throwable+.new(String, ..)) && this(caller) && if(true==true) {
return null;
}
// @Pointcut("call(Throwable+.new(String, ..)) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer( exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, String exceptionMessage) {
// return null;
// }
// @Pointcut("call(Throwable+.new(String, ..)) && this(caller) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(Object caller, String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer(caller, exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, Object caller, String exceptionMessage) {
// return null;
// }

}

+ 39
- 0
tests/bugs153/pr162135/Foo4.java Просмотреть файл

@@ -0,0 +1,39 @@
//package com.foliofn.infra.logging;

import java.lang.reflect.Field;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect public class Foo4 {

public void m() {
new RuntimeException("hello");
}

public static void main(String[] argv) {
}
@Pointcut("call(Throwable+.new(String, ..)) && args(exceptionMessage) && if()")
public static boolean exceptionInitializer(String exceptionMessage) {
return true;
}
@Around("exceptionInitializer( exceptionMessage)")
public Object annotateException(ProceedingJoinPoint jp, String exceptionMessage) {
return null;
}
// @Pointcut("call(Throwable+.new(String, ..)) && this(caller) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(Object caller, String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer(caller, exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, Object caller, String exceptionMessage) {
// return null;
// }

}

+ 29
- 0
tests/bugs153/pr162135/Foo5.java Просмотреть файл

@@ -0,0 +1,29 @@
//package com.foliofn.infra.logging;

import java.lang.reflect.Field;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect public class Foo5 {

public void m() {
new RuntimeException("hello");
}
public static void main(String[] argv) {
}
@Pointcut("call(Throwable+.new(String, ..)) && this(caller) && args(exceptionMessage) && if()")
public static boolean exceptionInitializer(Object caller, String exceptionMessage) {
return true;
}

@Around("exceptionInitializer(caller, exceptionMessage)")
public Object annotateException(ProceedingJoinPoint jp, Object caller, String exceptionMessage) {
return null;
}

}

Загрузка…
Отмена
Сохранить