[JEDI.NET-commits] docs Jedi.System.xml,1.1,1.2
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2004-06-24 20:07:13
|
Update of /cvsroot/jedidotnet/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2859/docs Modified Files: Jedi.System.xml Log Message: Updates docs Index: Jedi.System.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.System.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Jedi.System.xml 24 Jun 2004 14:05:49 -0000 1.1 --- Jedi.System.xml 24 Jun 2004 20:07:05 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 200406240154UTC--> <assembly> <name>Jedi.Core</name> --- 1,5 ---- <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-06-24 20:02 UTC--> <assembly> <name>Jedi.Core</name> *************** *** 7,73 **** <members> <member name="T:Jedi.System.NamespaceDoc"> ! <summary>The <b>Jedi.System</b> provides common services throughout the JEDI library.</summary> </member> ! <member name="T:Jedi.System.AttributeUtils"> ! <summary>Provides methods to work with or manipulate arrays or collections of attributes.</summary> </member> ! <member name="M:Jedi.System.AttributeUtils.#ctor"> <summary> </summary> </member> ! <member name="M:Jedi.System.AttributeUtils.IndexOf(System.Collections.ArrayList,System.Object)"> ! <summary>Locates an attribute by instance or by type.</summary> ! <param name="attrList">A list of attributes to search in.</param> ! <param name="attr">Attribute or attribute type to search for.</param> <returns> ! <para> ! -1 if the specified attribute or attribute type is not found; otherwise the zero-based index in ! the list. ! </para> </returns> </member> ! <member name="M:Jedi.System.AttributeUtils.OverrideAttributes(System.Attribute[],System.Attribute[],System.Attribute[])"> ! <summary>Override attributes in an array.</summary> ! <param name="attributes">The primary attribute array.</param> ! <param name="overrides"> ! An array of attributes to add to or replace in the primary array or a <B>null</B> reference. </param> ! <param name="replacements"> ! An array of attributes to replace in the primary array or a <B>nil</B> reference. </param> <returns> ! Overridden attribute array. </returns> </member> ! <member name="M:Jedi.System.AttributeUtils.OverrideAttributes(System.ComponentModel.AttributeCollection,System.Attribute[],System.Attribute[])"> <summary> ! Override attributes in an AttributeCollection. </summary> ! <param name="attributes">The primary attribute collection.</param> ! <param name="overrides"> ! An array of attributes to add to or replace in the primary attribute collection or a <B>null</B> reference. </param> ! <param name="replacements"> ! An array of attributes to replace in the primary attribute collection or a <B>nil</B> reference. </param> <returns> ! Overridded AttributeCollection. </returns> </member> ! <member name="M:Jedi.System.AttributeUtils.OverrideAttrList(System.Collections.ArrayList,System.Collections.ArrayList,System.Boolean)"> <summary> ! Override attributes in an array list. </summary> ! <param name="attrList">The primary attribute list.</param> ! <param name="overrideList">The list of attributes to add to or replace in the primary list.</param> ! <param name="mustExist"> ! Controls whether the attributes in <I>overrideList</I> must exist in the primary list. When set to ! <cref langword="true" /> only a replace operation will take place, otherwise an add and replace operation is ! executed. </param> <returns> ! Overridden attribute array list. </returns> </member> </members> </doc> \ No newline at end of file --- 7,198 ---- <members> <member name="T:Jedi.System.NamespaceDoc"> ! <summary>The <b>Jedi.System</b> namespace provides common services used throughout the JEDI library.</summary> </member> ! <member name="T:Jedi.System.AttributeCombineOperation"> ! <summary> ! Specifies how two attribute arrays or collections are combined. ! </summary> </member> ! <member name="F:Jedi.System.AttributeCombineOperation.Add"> ! <summary> ! Every attribute specified in the second list is added to the first list if it isn't in that list already. ! </summary> ! </member> ! <member name="F:Jedi.System.AttributeCombineOperation.AddAndReplace"> <summary> + Every attribute specified in the second list is added to the first list if it isn't in that list already or + replaced if it is. + </summary> + </member> + <member name="F:Jedi.System.AttributeCombineOperation.Delete"> + <summary> + Every attribute in the second list is removed from the first list. + </summary> + </member> + <member name="F:Jedi.System.AttributeCombineOperation.Replace"> + <summary> + Every attribute in the second list that is also in the first, will replace the one in the first list. </summary> </member> ! <member name="T:Jedi.System.AttributeUtils"> ! <summary>Provides methods to work with or manipulate arrays or collections of attributes.</summary> ! </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Attribute[],System.Attribute[])"> ! <summary> ! Combines two attribute arrays using the <see cref="F:Jedi.System.AttributeCombineOperation.AddAndReplace" /> ! operation. ! </summary> ! <param name="attributes1"> ! The primary attribute array. ! </param> ! <param name="attributes2"> ! The secondary attribute array. ! </param> <returns> ! An array that is the combination of the two specified arrays. </returns> </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Attribute[],System.Attribute[],Jedi.System.AttributeCombineOperation)"> ! <summary> ! Combines two attribute arrays using the specified combining operation. ! </summary> ! <param name="attributes1"> ! The primary attribute array. </param> ! <param name="attributes2"> ! The secondary attribute array. ! </param> ! <param name="operation"> ! The operation to perform when combining the two arrays. </param> <returns> ! An array that is the combination of the two specified arrays. </returns> </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Attribute[],System.ComponentModel.AttributeCollection)"> <summary> ! Combines an attribute array and an attribute collection using the ! <see cref="F:Jedi.System.AttributeCombineOperation.AddAndReplace" /> operation. </summary> ! <param name="attributes1"> ! The primary attribute array. </param> ! <param name="attributes2"> ! The secondary attribute collection. </param> <returns> ! An array that is the combination of the specified array and collection. </returns> </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Attribute[],System.ComponentModel.AttributeCollection,Jedi.System.AttributeCombineOperation)"> <summary> ! Combines an attribute array and an attribute collection using the specified combining operation. </summary> ! <param name="attributes1"> ! The primary attribute array. ! </param> ! <param name="attributes2"> ! The secondary attribute collection. ! </param> ! <param name="operation"> ! The operation to perform when combining the array and the collection. </param> <returns> ! An array that is the combination of the specified array and collection. ! </returns> ! </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.Collections.ArrayList,System.Collections.ArrayList,Jedi.System.AttributeCombineOperation)"> ! <summary> ! Combines two attribute lists using the specified combining operation. ! </summary> ! <param name="attributes1"> ! The primary attribute list. ! </param> ! <param name="attributes2"> ! The secondary attribute list. ! </param> ! <param name="operation"> ! The operation to perform when combining the two lists. ! </param> ! <returns> ! A copy of <paramref name="attributes1" />. The list is modified according to the <paramref name="attributes2" /> ! and <paramref name="operation" /> parameters. ! </returns> ! </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.ComponentModel.AttributeCollection,System.Attribute[])"> ! <summary> ! Combines an attribute array and an attribute collection using the ! <see cref="F:Jedi.System.AttributeCombineOperation.AddAndReplace" /> operation. ! </summary> ! <param name="attributes1"> ! The primary attribute collection. ! </param> ! <param name="attributes2"> ! The secondary attribute array. ! </param> ! <returns> ! An AttributeCollection that is the combination of the specified collection and array. ! </returns> ! </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.ComponentModel.AttributeCollection,System.Attribute[],Jedi.System.AttributeCombineOperation)"> ! <summary> ! Combines an attribute array and an attribute collection using the specified combining operation. ! </summary> ! <param name="attributes1"> ! The primary attribute collection. ! </param> ! <param name="attributes2"> ! The secondary attribute array. ! </param> ! <param name="operation"> ! The operation to perform when combining the specified collection and array. ! </param> ! <returns> ! An AttributeCollection that is the combination of the specified collection and array. ! </returns> ! </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.ComponentModel.AttributeCollection,System.ComponentModel.AttributeCollection)"> ! <summary> ! Combines two attribute collections using the ! <see cref="F:Jedi.System.AttributeCombineOperation.AddAndReplace" /> operation. ! </summary> ! <param name="attributes1"> ! The primary attribute collection. ! </param> ! <param name="attributes2"> ! The secondary attribute collection. ! </param> ! <returns> ! An AttributeCollection that is the combination of the two specified collections. ! </returns> ! </member> ! <member name="M:Jedi.System.AttributeUtils.CombineAttributes(System.ComponentModel.AttributeCollection,System.ComponentModel.AttributeCollection,Jedi.System.AttributeCombineOperation)"> ! <summary> ! Combines two attribute collections using the specified combining operation. ! </summary> ! <param name="attributes1"> ! The primary attribute collection. ! </param> ! <param name="attributes2"> ! The secondary attribute collection. ! </param> ! <param name="operation"> ! The operation to perform when combining the two collections. ! </param> ! <returns> ! An AttributeCollection that is the combination of the two specified collections. </returns> </member> + <member name="M:Jedi.System.AttributeUtils.IndexOf(System.Collections.ArrayList,System.Object)"> + <summary>Locates an attribute by instance or by type.</summary> + <param name="attrList">A list of attributes to search in.</param> + <param name="attr">Attribute or attribute type to search for.</param> + <returns> + <para> + -1 if the specified attribute or attribute type is not found; otherwise the zero-based index in + the list. + </para> + </returns> + </member> </members> </doc> \ No newline at end of file |