[JEDI.NET-commits] docs Jedi.IO.xml,1.3,1.4 Jedi.Strings.xml,1.5,1.6
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2004-11-27 13:50:08
|
Update of /cvsroot/jedidotnet/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2639/docs Modified Files: Jedi.IO.xml Jedi.Strings.xml Log Message: Added missing exception tags. Index: Jedi.IO.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.IO.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Jedi.IO.xml 26 Nov 2004 20:54:19 -0000 1.3 --- Jedi.IO.xml 27 Nov 2004 13:49:54 -0000 1.4 *************** *** 132,135 **** --- 132,140 ---- </para> </remarks> + <exception cref="T:System.ArgumentNullException"> + <para> + Thrown when a <see langword="null" /> was passed to the <paramref name="paths" /> parameter. + </para> + </exception> <exception cref="T:Jedi.IO.PathException"> <para> *************** *** 165,168 **** --- 170,178 ---- </para> </remarks> + <exception cref="T:System.ArgumentNullException"> + <para> + Thrown when a <see langword="null" /> was passed to the <paramref name="paths" /> parameter. + </para> + </exception> <exception cref="T:Jedi.IO.PathException"> <para> Index: Jedi.Strings.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.Strings.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Jedi.Strings.xml 26 Nov 2004 20:53:40 -0000 1.5 --- Jedi.Strings.xml 27 Nov 2004 13:49:54 -0000 1.6 *************** *** 1,5 **** <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-11-26 20:45 UTC--> <assembly> <name>Jedi.Text</name> --- 1,5 ---- <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-11-27 13:16 UTC--> <assembly> <name>Jedi.Text</name> *************** *** 341,344 **** --- 341,349 ---- </para> </remarks> + <exception cref="T:System.FormatException"> + <para> + Thrown when the ending quote was missing in the specified string. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.ExtractQuotedString(System.String,Jedi.Strings.ExtractQuotedStringFlags)"> *************** *** 372,375 **** --- 377,393 ---- </para> </remarks> + <exception cref="T:System.FormatException"> + <para> + Thrown when <see cref="F:Jedi.Strings.ExtractQuotedStringFlags.IgnoreGarbage" /> was not specified in the + <paramref name="flags" /> parameter and there was more text after the ending quote. + </para> + <para> + -or- + </para> + <para> + <see cref="F:Jedi.Strings.ExtractQuotedStringFlags.EndQuoteMandetory" /> was specified in the + <paramref name="flags" /> parameter but it was missing in the specified string. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.ExtractQuotedString(System.String,System.Int32@)"> *************** *** 535,538 **** --- 553,561 ---- <paramref name="s" />. </returns> + <exception cref="T:System.ArgumentOutOfRangeException"> + <para> + Thrown when the <paramref name="count" /> parameter is negative. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.Right(System.String,System.Int32)"> *************** *** 595,598 **** --- 618,626 ---- determination). </remarks> + <exception cref="T:System.InvalidOperationException"> + <para> + Thrown when the <paramref name="tabs" /> parameter contains duplicate values. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.TabSet.#ctor(System.Int32[],System.Int32)"> *************** *** 612,615 **** --- 640,648 ---- <paramref name="defaultWidth" /> parameter. </remarks> + <exception cref="T:System.InvalidOperationException"> + <para> + Thrown when the <paramref name="tabs" /> parameter contains duplicate values. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.TabSet.Add(System.Int32)"> *************** *** 620,623 **** --- 653,661 ---- The tabulation position to add. </param> + <exception cref="T:System.InvalidOperationException"> + <para> + Thrown when the position to add is already defined. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.TabSet.BeginUpdate"> *************** *** 675,678 **** --- 713,721 ---- </para> </value> + <exception cref="T:System.ArgumentOutOfRangeException"> + <para> + Thrown when this property is set to a negative value. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.TabSet.EndUpdate"> *************** *** 802,805 **** --- 845,853 ---- A flag indicating whether all defined positions following the specified one should be removed as well. </param> + <exception cref="T:System.ArgumentOutOfRangeException"> + <para> + Thrown when the specified index was less than zero or greater or equal to the number of defined positions. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.TabSet.TabFrom(System.Int32)"> *************** *** 824,827 **** --- 872,880 ---- A defined tabulation position. </value> + <exception cref="T:System.InvalidOperationException"> + <para> + Thrown when you try to set a tabulation position and the specified position is already defined. + </para> + </exception> </member> <member name="M:Jedi.Strings.StringUtils.TabSet.ToString"> |