Ejemplo n.º 1
0
 /// <summary>
 /// When DecimalFormat is used to parsing, and this value is set to true,
 /// then all the resulting number will be of type
 /// <c>java.lang.Integer</c>. Except that, NaN, positive and
 /// negative infinity are still returned as <c>java.lang.Double</c>
 /// In this implementation, com.ibm.icu.text.DecimalFormat is wrapped to
 /// fulfill most of the format and parse feature. And this method is
 /// delegated to the wrapped instance of com.ibm.icu.text.DecimalFormat.
 /// </summary>
 ///
 /// <param name="value">If set to true, all the resulting number will be of typejava.lang.Integer except some special cases.</param>
 public override void SetParseIntegerOnly(bool value_ren)
 {
     dform.SetParseIntegerOnly(value_ren);
 }