Clover Coverage Report - Atlassian XWork(Aggregated)
Coverage timestamp: Wed Jul 27 2011 23:39:31 CDT
2   23   2   1
0   16   1   2
2     1  
1    
 
 
  Xwork10VersionSupport       Line # 12 2 2 0% 0.0
 
No Tests
 
1    package com.atlassian.xwork10;
2   
3    import com.atlassian.xwork.XWorkVersionSupport;
4    import com.opensymphony.xwork.Action;
5    import com.opensymphony.xwork.ActionInvocation;
6   
7    import java.lang.reflect.Method;
8   
9    /**
10    *
11    */
 
12    public class Xwork10VersionSupport implements XWorkVersionSupport
13    {
 
14  0 toggle public Action extractAction(ActionInvocation invocation)
15    {
16  0 return invocation.getAction();
17    }
18   
 
19  0 toggle public Method extractMethod(ActionInvocation invocation) throws NoSuchMethodException
20    {
21  0 return invocation.getProxy().getConfig().getMethod();
22    }
23    }