Example #1
0
 /// <summary>
 /// Formats the specified object using the rules of this DecimalNumberFormat
 /// and returns an AttributedCharacterIterator with the formatted number and
 /// attributes.
 /// </summary>
 ///
 /// <param name="object">the object to format</param>
 /// <returns>an AttributedCharacterIterator with the formatted number and
 /// attributes</returns>
 /// <exception cref="NullPointerException">when the object is null</exception>
 /// <exception cref="IllegalArgumentException">when the object cannot be formatted by this Format</exception>
 public override AttributedCharacterIterator FormatToCharacterIterator(Object obj0)
 {
     if (obj0 == null)
     {
         throw new NullReferenceException();
     }
     return(dform.FormatToCharacterIterator(obj0));
 }