| 1 26 package org.hammurapi.inspectors.metrics.callertrace; 27 28 import com.pavelvlasov.jsel.OperationInfo; 29 import com.pavelvlasov.review.SourceMarker; 30 31 37 public class MethodWrapperInvoked extends MethodWrapperImpl implements MethodWrapper{ 38 private MethodWrapperDeclaration callerMethod = null; 39 40 public MethodWrapperInvoked( OperationInfo _method, SourceMarker srcMrk){ 41 super( _method, srcMrk); 42 } 43 44 public MethodWrapperInvoked( String _name){ 46 super(_name); 47 } 48 49 50 public MethodWrapperDeclaration getDeclarationMethod(){ 51 return null; 52 } 53 54 55 58 public MethodWrapperDeclaration getCallerMethod() { 59 return callerMethod; 60 } 61 64 public void setCallerMethod(MethodWrapperDeclaration callerMethod) { 65 this.callerMethod = callerMethod; 66 } 67 } 68 | Popular Tags |