| CODENOTIFIER | HelpYou are not signed inSign in |
Project: UFace
Revision: 2268
Author: kenneth.westelinck
Date: 17 Aug 2008 06:25:32
Changes:Javadoc
Files:| ... | ...@@ -27,10 +27,15 @@ | |
| 27 | 27 | private AttributeDescriptor descriptor; |
| 28 | 28 | private DecimalFormat[] parsers; |
| 29 | 29 | private int targetType; |
| 30 | /** The target is of type {@link Short} */ | |
| 30 | 31 | public static final int SHORT_TARGET = 1; |
| 32 | /** The target is of type {@link Integer} */ | |
| 31 | 33 | public static final int INTEGER_TARGET = 2; |
| 34 | /** The target is of type {@link Long} */ | |
| 32 | 35 | public static final int LONG_TARGET = 3; |
| 36 | /** The target is of type {@link Float} */ | |
| 33 | 37 | public static final int FLOAT_TARGET = 4; |
| 38 | /** The target is of type {@link Double} */ | |
| 34 | 39 | public static final int DOUBLE_TARGET = 5; |
| 35 | 40 | |
| 36 | 41 | /** |