[csdoc-patches] CVS: csdoc/src/csdoc rootcontext.cs,1.1,1.2 ChangeLog,1.16,1.17
Status: Planning
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2003-03-28 14:06:36
|
Update of /cvsroot/csdoc/csdoc/src/csdoc In directory sc8-pr-cvs1:/tmp/cvs-serv32124 Modified Files: rootcontext.cs ChangeLog Log Message: 2003-03-28 * rootcontext.cs : AttributeTypes { get; } - Added Index: rootcontext.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/csdoc/rootcontext.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- rootcontext.cs 19 Feb 2003 05:50:12 -0000 1.1 +++ rootcontext.cs 28 Mar 2003 14:06:26 -0000 1.2 @@ -72,6 +72,21 @@ type_container_resolve_order = new ArrayList (); } + /// <summary> + /// Returns all the attribute classes. + /// Individual type is TypeContainer + /// </summary> + /// <remarks> + /// Added by Gaurav Vaish + /// </remarks> + public static AttributeTypes + { + get + { + return attribute_types; + } + } + static public Tree Tree { get { return tree; Index: ChangeLog =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/csdoc/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 27 Mar 2003 17:50:53 -0000 1.16 +++ ChangeLog 28 Mar 2003 14:06:29 -0000 1.17 @@ -1,4 +1,8 @@ +2003-03-28 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * rootcontext.cs : AttributeTypes { get; } - Added + 2003-03-27 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * cs-parser.jay : Modified the attribute rule. |