| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| PossibleValuesDescriptorExtension |
|
| 1.0;1 |
| 1 | package org.trails.descriptor.annotation; |
|
| 2 | ||
| 3 | import java.util.Map; |
|
| 4 | ||
| 5 | /** |
|
| 6 | * Extension to the property descriptor that holds information about possible |
|
| 7 | * values. |
|
| 8 | * |
|
| 9 | * @author pruggia |
|
| 10 | */ |
|
| 11 | public class PossibleValuesDescriptorExtension extends ExpressionExtension |
|
| 12 | { |
|
| 13 | ||
| 14 | public PossibleValuesDescriptorExtension(String theExpression) |
|
| 15 | { |
|
| 16 | 0 | super(theExpression); |
| 17 | 0 | } |
| 18 | ||
| 19 | public PossibleValuesDescriptorExtension(String theExpression, Map context) |
|
| 20 | { |
|
| 21 | 0 | super(theExpression, context); |
| 22 | 0 | } |
| 23 | } |