|
|||||||||||||||||||
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 | |||||||||||||||
ExceptionalMapEntryClosure.java | - | 100% | 100% | 100% |
|
1 |
package com.diasparsoftware.java.util;
|
|
2 |
|
|
3 |
import java.util.Map;
|
|
4 |
|
|
5 |
public abstract class ExceptionalMapEntryClosure |
|
6 |
implements ExceptionalClosure {
|
|
7 |
|
|
8 | 99 |
public Object execute(Object parameters) throws Exception { |
9 | 99 |
Map.Entry each = (Map.Entry) parameters; |
10 | 99 |
eachMapEntry(each.getKey(), each.getValue()); |
11 | 88 |
return null; |
12 |
} |
|
13 |
|
|
14 |
protected abstract void eachMapEntry(Object key, Object value) |
|
15 |
throws Exception;
|
|
16 |
} |
|
17 |
|
|