C# Class Castle.ActiveRecord.Framework.Internal.DependentObjectModel

This model is used to represent a dependent object value type (<composite-element/> - in NHibernate talk).
Inheritance: IVisitable
Mostrar archivo Open project: nats/castle-1.0.3-mono Class Usage Examples

Public Methods

Method Description
Accept ( IVisitor visitor ) : void

Accepts the specified visitor and call the relevant IVisitor.Visit***() method

DependentObjectModel ( PropertyInfo propInfo, HasManyAttribute hasManyAtt, ActiveRecordModel dependentObjectModel ) : System.Reflection

Initializes a new instance of the DependentObjectModel class.

Method Details

Accept() public method

Accepts the specified visitor and call the relevant IVisitor.Visit***() method
public Accept ( IVisitor visitor ) : void
visitor IVisitor The visitor.
return void

DependentObjectModel() public method

Initializes a new instance of the DependentObjectModel class.
public DependentObjectModel ( PropertyInfo propInfo, HasManyAttribute hasManyAtt, ActiveRecordModel dependentObjectModel ) : System.Reflection
propInfo System.Reflection.PropertyInfo The prop info.
hasManyAtt HasManyAttribute The nested att.
dependentObjectModel ActiveRecordModel The nested model.
return System.Reflection