update inbox list
This commit is contained in:
23
vendor/scrivo/highlight.php/test/detect/aspectj/default.txt
vendored
Normal file
23
vendor/scrivo/highlight.php/test/detect/aspectj/default.txt
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.aspectj.syntax;
|
||||
import org.aspectj.lang.annotation.AdviceName;
|
||||
|
||||
privileged public aspect LoggingAspect percflowbelow(ajia.services.*){
|
||||
private pointcut getResult() : call(* *(..) throws SQLException) && args(Account, .., int);
|
||||
@AdviceName("CheckValidEmail")
|
||||
before (Customer hu) : getResult(hu){
|
||||
System.out.println("Your mail address is valid!");
|
||||
}
|
||||
Object around() throws InsufficientBalanceException: getResult() && call(Customer.new(String,String,int,int,int)){
|
||||
return proceed();
|
||||
}
|
||||
public Cache getCache() {
|
||||
return this.cache;
|
||||
}
|
||||
pointcut beanPropertyChange(BeanSupport bean, Object newValue): execution(void BeanSupport+.set*(*)) && args(newValue) && this(bean);
|
||||
declare parents: banking.entities.* implements BeanSupport;
|
||||
declare warning : call(void TestSoftening.perform()): "Please ensure you are not calling this from an AWT thread";
|
||||
private String Identifiable.id;
|
||||
public void Identifiable.setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user