Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21187/NHibernate.DomainModel
Modified Files:
NHibernate.DomainModel-1.1.csproj
Added Files:
Abstract.cs AbstractProxy.cs Trivial.cs
Log Message:
Still adding testentities.
--- NEW FILE: Abstract.cs ---
using System;
using System.Collections;
namespace NHibernate.DomainModel
{
public abstract class Abstract : Foo, AbstractProxy
{
/// <summary>
/// Holds the _time
/// </summary>
private DateTime _time;
/// <summary>
/// Gets or sets the _time
/// </summary>
public DateTime time
{
get
{
return _time;
}
set
{
_time = value;
}
}
/// <summary>
/// Holds the _abstract
/// </summary>
private IList _abstracts;
/// <summary>
/// Gets or sets the _abstract
/// </summary>
public IList abstracts
{
get
{
return _abstracts;
}
set
{
_abstracts = value;
}
}
}
}
--- NEW FILE: Trivial.cs ---
using System;
namespace NHibernate.DomainModel
{
public class Trivial : Foo
{
}
}
Index: NHibernate.DomainModel-1.1.csproj
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/NHibernate.DomainModel-1.1.csproj,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** NHibernate.DomainModel-1.1.csproj 8 Apr 2004 14:59:32 -0000 1.6
--- NHibernate.DomainModel-1.1.csproj 8 Apr 2004 16:44:19 -0000 1.7
***************
*** 103,106 ****
--- 103,116 ----
/>
<File
+ RelPath = "Abstract.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "AbstractProxy.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "AssemblyInfo.cs"
SubType = "Code"
***************
*** 376,379 ****
--- 386,394 ----
/>
<File
+ RelPath = "Trivial.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "UnsavedType.cs"
SubType = "Code"
--- NEW FILE: AbstractProxy.cs ---
using System;
using System.Collections;
namespace NHibernate.DomainModel
{
public interface AbstractProxy : FooProxy
{
IList abstracts
{
get;
set;
}
DateTime time
{
get;
set;
}
}
}
|