Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Expression
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29295/Expression
Modified Files:
LogicalExpression.cs
Log Message:
minor fixes for FxCop rules
Index: LogicalExpression.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Expression/LogicalExpression.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** LogicalExpression.cs 28 Mar 2004 06:05:09 -0000 1.3
--- LogicalExpression.cs 22 Nov 2004 03:55:59 -0000 1.4
***************
*** 16,27 ****
{
- /// <summary>
- /// The Expression that will be on the Left Hand Side of the Op.
- /// </summary>
protected Expression lhs;
-
- /// <summary>
- /// The Expression that will be on the Right Hand Side of the Op.
- /// </summary>
protected Expression rhs;
--- 16,20 ----
***************
*** 39,42 ****
--- 32,51 ----
/// <summary>
+ /// The Expression that will be on the Left Hand Side of the Op.
+ /// </summary>
+ protected Expression LeftHandSide
+ {
+ get { return lhs; }
+ }
+
+ /// <summary>
+ /// The Expression that will be on the Right Hand Side of the Op.
+ /// </summary>
+ protected Expression RightHandSide
+ {
+ get { return rhs; }
+ }
+
+ /// <summary>
/// Combines the <see cref="TypedValue"/> for the Left Hand Side and the
/// Right Hand Side of the Expression into one array.
|