some doc cleanup

This commit is contained in:
markpollack
2010-04-08 20:06:09 +00:00
parent 1d850066b3
commit 8a3df5654c
3 changed files with 8 additions and 6 deletions

View File

@@ -35,16 +35,15 @@ namespace Spring.Messaging.Nms.Listener
/// Inherits basic Connection and Session configuration handling from the
/// <see cref="NmsAccessor"/> base class.
/// </summary>
/// <remarks>
/// <para>
/// This class provides basic lifecycle management, in particular management
/// of a shared Connection. Subclasses are supposed to plug into this
/// lifecycle, implementing the <see cref="SharedConnectionEnabled"/> as well as
///
/// </para>
/// <remarks>
///
/// </remarks>
/// <author>Mark Pollack</author>
/// <author>Juergen Hoeller</author>
/// <author>Mark Pollack(.NET)</author>
public abstract class AbstractListenerContainer : NmsDestinationAccessor, ILifecycle, IObjectNameAware, IDisposable
{
#region Logging

View File

@@ -331,7 +331,8 @@ namespace Spring.Testing.NUnit
/// <summary>
/// Subclasses can override this method in order to
/// add custom test setup logic.
/// add custom test setup logic after the context has been created and dependencies injected.
/// Called from this class's [SetUp] method.
/// </summary>
protected virtual void OnSetUp()
{}
@@ -354,7 +355,7 @@ namespace Spring.Testing.NUnit
/// <summary>
/// Subclasses can override this method in order to
/// add custom test teardown logic.
/// add custom test teardown logic. Called from this class's [TearDown] method.
/// </summary>
protected virtual void OnTearDown()
{}

View File

@@ -218,6 +218,8 @@ namespace Spring.Testing.NUnit
}
/// <summary>
/// Loads application context from the specified resource locations.
/// </summary>