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