|
From: <fab...@us...> - 2009-05-01 14:09:07
|
Revision: 4221
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4221&view=rev
Author: fabiomaulo
Date: 2009-05-01 14:09:04 +0000 (Fri, 01 May 2009)
Log Message:
-----------
renamed file
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate/NHibernate.csproj
Added Paths:
-----------
trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/IExplicitParameterSpecification.cs
Removed Paths:
-------------
trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/ExplicitParameterSpecification.cs
Deleted: trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/ExplicitParameterSpecification.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/ExplicitParameterSpecification.cs 2009-04-30 23:44:59 UTC (rev 4220)
+++ trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/ExplicitParameterSpecification.cs 2009-05-01 14:09:04 UTC (rev 4221)
@@ -1,21 +0,0 @@
-namespace NHibernate.Hql.Ast.ANTLR.Parameters
-{
- /// <summary>
- /// An additional contract for parameters which originate from parameters explicitly encountered in the source statement
- /// (HQL or native-SQL).
- /// Author: Steve Ebersole
- /// Ported by: Steve Strong
- /// </summary>
- public interface IExplicitParameterSpecification : IParameterSpecification
- {
- /// <summary>
- /// Retrieves the line number on which this parameter occurs in the source query.
- /// </summary>
- int SourceLine { get; }
-
- /// <summary>
- /// Retrieves the column number (within the {@link #getSourceLine()}) where this parameter occurs.
- /// </summary>
- int SourceColumn { get; }
- }
-}
Copied: trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/IExplicitParameterSpecification.cs (from rev 4219, trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/ExplicitParameterSpecification.cs)
===================================================================
--- trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/IExplicitParameterSpecification.cs (rev 0)
+++ trunk/nhibernate/src/NHibernate/Hql/Ast/ANTLR/Parameters/IExplicitParameterSpecification.cs 2009-05-01 14:09:04 UTC (rev 4221)
@@ -0,0 +1,21 @@
+namespace NHibernate.Hql.Ast.ANTLR.Parameters
+{
+ /// <summary>
+ /// An additional contract for parameters which originate from parameters explicitly encountered in the source statement
+ /// (HQL or native-SQL).
+ /// Author: Steve Ebersole
+ /// Ported by: Steve Strong
+ /// </summary>
+ public interface IExplicitParameterSpecification : IParameterSpecification
+ {
+ /// <summary>
+ /// Retrieves the line number on which this parameter occurs in the source query.
+ /// </summary>
+ int SourceLine { get; }
+
+ /// <summary>
+ /// Retrieves the column number (within the {@link #getSourceLine()}) where this parameter occurs.
+ /// </summary>
+ int SourceColumn { get; }
+ }
+}
Modified: trunk/nhibernate/src/NHibernate/NHibernate.csproj
===================================================================
--- trunk/nhibernate/src/NHibernate/NHibernate.csproj 2009-04-30 23:44:59 UTC (rev 4220)
+++ trunk/nhibernate/src/NHibernate/NHibernate.csproj 2009-05-01 14:09:04 UTC (rev 4221)
@@ -500,7 +500,7 @@
<Compile Include="Hql\Ast\ANTLR\Parameters\AggregatedIndexCollectionSelectorParameterSpecifications.cs" />
<Compile Include="Hql\Ast\ANTLR\Parameters\CollectionFilterKeyParameterSpecification.cs" />
<Compile Include="Hql\Ast\ANTLR\Parameters\DynamicFilterParameterSpecification.cs" />
- <Compile Include="Hql\Ast\ANTLR\Parameters\ExplicitParameterSpecification.cs" />
+ <Compile Include="Hql\Ast\ANTLR\Parameters\IExplicitParameterSpecification.cs" />
<Compile Include="Hql\Ast\ANTLR\Parameters\IParameterSpecification.cs" />
<Compile Include="Hql\Ast\ANTLR\Parameters\NamedParameterSpecification.cs" />
<Compile Include="Hql\Ast\ANTLR\Parameters\ParameterTranslationsImpl.cs" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|