From: Kevin W. <kev...@us...> - 2004-12-31 17:52:35
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Expression In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22336 Modified Files: Disjunction.cs EqExpression.cs EqPropertyExpression.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: Disjunction.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Expression/Disjunction.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Disjunction.cs 28 Mar 2004 06:05:09 -0000 1.2 --- Disjunction.cs 31 Dec 2004 17:52:25 -0000 1.3 *************** *** 1,4 **** - using System; - namespace NHibernate.Expression { --- 1,2 ---- *************** *** 8,15 **** public class Disjunction : Junction { ! protected override string Op { get { return " or "; } } } ! } --- 6,14 ---- public class Disjunction : Junction { ! /// <summary></summary> ! protected override string Op { get { return " or "; } } } ! } \ No newline at end of file Index: EqPropertyExpression.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Expression/EqPropertyExpression.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EqPropertyExpression.cs 2 Aug 2004 04:30:37 -0000 1.1 --- EqPropertyExpression.cs 31 Dec 2004 17:52:25 -0000 1.2 *************** *** 1,17 **** - using System; - namespace NHibernate.Expression { ! public class EqPropertyExpression : PropertyExpression ! { ! public EqPropertyExpression(string propertyName, string otherPropertyName) ! : base(propertyName, otherPropertyName) ! { ! } ! protected override string Op ! { ! get { return " = "; } ! } ! } } \ No newline at end of file --- 1,22 ---- namespace NHibernate.Expression { ! /// <summary></summary> ! public class EqPropertyExpression : PropertyExpression ! { ! /// <summary> ! /// ! /// </summary> ! /// <param name="propertyName"></param> ! /// <param name="otherPropertyName"></param> ! public EqPropertyExpression( string propertyName, string otherPropertyName ) ! : base( propertyName, otherPropertyName ) ! { ! } ! /// <summary></summary> ! protected override string Op ! { ! get { return " = "; } ! } ! } } \ No newline at end of file Index: EqExpression.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Expression/EqExpression.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** EqExpression.cs 28 Mar 2004 06:05:09 -0000 1.4 --- EqExpression.cs 31 Dec 2004 17:52:25 -0000 1.5 *************** *** 1,20 **** ! using System; ! ! namespace NHibernate.Expression { ! /// <summary> /// An Expression that represents an "equal" constraint. /// </summary> ! public class EqExpression : SimpleExpression { ! ! internal EqExpression(string propertyName, object value) : base (propertyName, value) { } ! protected override string Op { get { return " = "; } } } ! } --- 1,23 ---- ! namespace NHibernate.Expression ! { /// <summary> /// An Expression that represents an "equal" constraint. /// </summary> ! public class EqExpression : SimpleExpression { ! /// <summary> ! /// ! /// </summary> ! /// <param name="propertyName"></param> ! /// <param name="value"></param> ! internal EqExpression( string propertyName, object value ) : base( propertyName, value ) { } ! /// <summary></summary> ! protected override string Op { get { return " = "; } } } ! } \ No newline at end of file |