ReturnValueBean.java :  » UnTagged » recordcenter » org » springexample » aop » tagert » execution » Android Open Source

Android Open Source » UnTagged » recordcenter 
recordcenter » org » springexample » aop » tagert » execution » ReturnValueBean.java
package org.springexample.aop.tagert.execution;

public class ReturnValueBean implements ExecutionBean {

  public void testAop() {
    System.out.println("testAOP");

  }

  public void testAop(int throwexception) {
    System.out.println("testAOP");
  }

  public String getValue() {
    
    return "test return value";
  }

  public String throwsException(){
    return null;
  }

  public void testAop(int throwexception, String arg) {
  
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.