|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
RequestDispatcherAdapter.java | - | - | 0% | 0% |
|
1 |
package com.diasparsoftware.javax.servlet.http;
|
|
2 |
|
|
3 |
import java.io.IOException;
|
|
4 |
|
|
5 |
import javax.servlet.*;
|
|
6 |
|
|
7 |
public class RequestDispatcherAdapter implements RequestDispatcher { |
|
8 | 0 |
public void forward( |
9 |
ServletRequest request, |
|
10 |
ServletResponse response) |
|
11 |
throws ServletException, IOException {
|
|
12 |
} |
|
13 |
|
|
14 | 0 |
public void include( |
15 |
ServletRequest request, |
|
16 |
ServletResponse response) |
|
17 |
throws ServletException, IOException {
|
|
18 |
} |
|
19 |
} |
|
20 |
|
|