forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProperty.cs
52 lines (46 loc) · 1.12 KB
/
Property.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using NHibernate.Type;
namespace NHibernate.Tuple
{
/// <summary>
/// Defines the basic contract of a Property within the runtime metamodel.
/// </summary>
/// <remarks>
/// Author: Steve Ebersole
/// </remarks>
[Serializable]
public abstract class Property
{
private string name;
private string node;
private IType type;
/// <summary>
/// Constructor for Property instances.
/// </summary>
/// <param name="name">The name by which the property can be referenced within its owner.</param>
/// <param name="node">The node name to use for XML-based representation of this property.</param>
/// <param name="type">The Hibernate Type of this property.</param>
protected Property(string name, string node, IType type)
{
this.name = name;
this.node = node;
this.type = type;
}
public string Name
{
get { return name; }
}
public string Node
{
get { return node; }
}
public IType Type
{
get { return type; }
}
public override string ToString()
{
return "Property(" + name + ':' + type.Name + ')';
}
}
}