Set cost mod @param aString the cost modifier in String form
(final String aString)
| 900 | * @param aString the cost modifier in String form |
| 901 | */ |
| 902 | public void setCostMod(final String aString) |
| 903 | { |
| 904 | |
| 905 | try |
| 906 | { |
| 907 | costMod = new BigDecimal(aString); |
| 908 | } |
| 909 | catch (NumberFormatException e) |
| 910 | { |
| 911 | costMod = BigDecimal.ZERO; |
| 912 | } |
| 913 | } |
| 914 | |
| 915 | /** |
| 916 | * Set cost mod |
no outgoing calls
no test coverage detected