- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
/**
* @param stringValue the stringValue to set
*/
public void setStringValue(String stringValue)
{
this.stringValue = stringValue;
/** Чтобы отловить, откуда приходит одновременная установка CH/NM */
/** TODO: Убрать после отладки!!! */
if(stringValue != null && stringValue.startsWith("#,##")) {
try {
throw new Exception("#,## was set!!!");
} catch (Exception e) {
System.out.println(e.getMessage());
e.printStackTrace();
}
}
}
Комментарии (0) RSS