You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MockMethodSignature.java 514B

123456789101112131415161718
  1. /*
  2. * Created on 07-May-2004
  3. *
  4. * TODO To change the template for this generated file go to
  5. * Window - Preferences - Java - Code Generation - Code and Comments
  6. */
  7. package org.aspectj.aopalliance.tests;
  8. import org.aspectj.lang.reflect.MethodSignature;
  9. class MockMethodSignature extends MockSignature implements MethodSignature {
  10. public MockMethodSignature(String name,Class decClass, Class[] paramTypes) {
  11. super(name,decClass,paramTypes);
  12. }
  13. public Class getReturnType() {return null;}
  14. }