Update of /cvsroot/jedidotnet/main/run
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19189/main/run
Modified Files:
Jedi.Drawing.Colors.pas Jedi.IO.FileOfRec.pas
Jedi.IO.Paths.pas
Log Message:
Added SourceInfo attributes
Index: Jedi.IO.Paths.pas
===================================================================
RCS file: /cvsroot/jedidotnet/main/run/Jedi.IO.Paths.pas,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Jedi.IO.Paths.pas 5 Dec 2004 13:19:48 -0000 1.1
--- Jedi.IO.Paths.pas 22 Jan 2005 15:28:45 -0000 1.2
***************
*** 26,37 ****
--- 26,42 ----
interface
+ uses
+ Jedi.System;
+
{$REGION 'Path manipulations'}
type
CharArray = array of Char;
+ [JediSourceInfo('$Header$')]
Path = class
{$REGION 'PathConfig'}
public
type
+ [JediSourceInfo('$Header$')]
PathConfig = class
strict private
***************
*** 76,79 ****
--- 81,85 ----
end;
+ [JediSourceInfo('$Header$')]
PathException = class (SystemException)
end;
***************
*** 86,91 ****
System.Collections,
System.IO,
! System.Text,
! Jedi.System;
{$ENDREGION}
--- 92,96 ----
System.Collections,
System.IO,
! System.Text;
{$ENDREGION}
Index: Jedi.IO.FileOfRec.pas
===================================================================
RCS file: /cvsroot/jedidotnet/main/run/Jedi.IO.FileOfRec.pas,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Jedi.IO.FileOfRec.pas 10 Dec 2004 11:58:23 -0000 1.2
--- Jedi.IO.FileOfRec.pas 22 Jan 2005 15:28:45 -0000 1.3
***************
*** 29,33 ****
uses
System.IO,
! System.Reflection;
{$ENDREGION}
--- 29,34 ----
uses
System.IO,
! System.Reflection,
! Jedi.System;
{$ENDREGION}
***************
*** 40,43 ****
--- 41,45 ----
/// </summary>
+ [JediSourceInfo('$Header$')]
StoredExtended = record
private
***************
*** 73,76 ****
--- 75,79 ----
{$REGION 'FileOfRecord = class(System.Object)'}
+ [JediSourceInfo('$Header$')]
EFileOfRecordError = class(Exception);
/// <summary>
***************
*** 81,84 ****
--- 84,88 ----
/// type must be changed into StoredExtended.
/// </limitation>
+ [JediSourceInfo('$Header$')]
FileOfRecord = class(System.Object)
strict private
Index: Jedi.Drawing.Colors.pas
===================================================================
RCS file: /cvsroot/jedidotnet/main/run/Jedi.Drawing.Colors.pas,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Jedi.Drawing.Colors.pas 5 Dec 2004 13:19:48 -0000 1.1
--- Jedi.Drawing.Colors.pas 22 Jan 2005 15:28:45 -0000 1.2
***************
*** 28,36 ****
{$REGION 'interface uses'}
uses
! System.Drawing;
{$ENDREGION}
{$REGION 'Color related'}
type
ColorUtils = class sealed (System.Object)
public
--- 28,38 ----
{$REGION 'interface uses'}
uses
! System.Drawing,
! Jedi.System.SourceVersioning;
{$ENDREGION}
{$REGION 'Color related'}
type
+ [JediSourceInfo('$Header$')]
ColorUtils = class sealed (System.Object)
public
|