You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2003/06/27 15:41:33 UTC

cvs commit: avalon-sandbox/csframework/src/test AbstractConfigurationTestCase.cs AttributesTestCase.cs ConfigurationCollectionTestCase.cs ConfigurationExceptionTestCase.cs ContextExceptionTestCase.cs DefaultConfigurationTestCase.cs DefaultContextTestCase.cs ParameterExceptionTestCase.cs ServiceExceptionTestCase.cs

bloritsch    2003/06/27 06:41:32

  Modified:    csframework/src/cs Attributes.cs NamespaceSummary.xml
               csframework/src/cs/Activity IDisposable.cs IExecutable.cs
                        IInitializable.cs IStartable.cs ISuspendable.cs
               csframework/src/cs/Configuration AbstractConfiguration.cs
                        ConfigurationCollection.cs
                        ConfigurationException.cs DefaultConfiguration.cs
                        DefaultConfigurationSectionHandler.cs
                        DefaultConfigurationSerializer.cs IConfigurable.cs
                        IConfiguration.cs
               csframework/src/cs/Context ContextException.cs
                        DefaultContext.cs IContext.cs IContextualizable.cs
                        IResolvable.cs
               csframework/src/cs/Logger AbstractLogEnabled.cs
                        ConsoleLogger.cs DiagnosticsLogger.cs
                        ILogEnabled.cs ILogger.cs Log4netLogger.cs
                        NullLogger.cs
               csframework/src/cs/Parameters IParameterizable.cs
                        ParameterException.cs Parameters.cs
               csframework/src/cs/Service DefaultServiceManager.cs
                        IServiceManager.cs IServiceable.cs
                        ServiceException.cs
               csframework/src/cs/Util ContainerUtil.cs Converter.cs
                        RuntimeSerializer.cs
               csframework/src/test AbstractConfigurationTestCase.cs
                        AttributesTestCase.cs
                        ConfigurationCollectionTestCase.cs
                        ConfigurationExceptionTestCase.cs
                        ContextExceptionTestCase.cs
                        DefaultConfigurationTestCase.cs
                        DefaultContextTestCase.cs
                        ParameterExceptionTestCase.cs
                        ServiceExceptionTestCase.cs
  Log:
  change the namespace
  
  Revision  Changes    Path
  1.4       +1 -1      avalon-sandbox/csframework/src/cs/Attributes.cs
  
  Index: Attributes.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Attributes.cs,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Attributes.cs	26 Jun 2003 19:44:43 -0000	1.3
  +++ Attributes.cs	27 Jun 2003 13:41:29 -0000	1.4
  @@ -47,7 +47,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework
  +namespace Apache.AvalonFramework
   {
   
   ///<summary>
  
  
  
  1.2       +17 -17    avalon-sandbox/csframework/src/cs/NamespaceSummary.xml
  
  Index: NamespaceSummary.xml
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/NamespaceSummary.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NamespaceSummary.xml	25 Jun 2003 15:44:57 -0000	1.1
  +++ NamespaceSummary.xml	27 Jun 2003 13:41:29 -0000	1.2
  @@ -1,37 +1,37 @@
   <namespaces>
  -  <namespace name="Apache.Avalon.Framework">
  -    The <b>Apache.Avalon.Framework</b> namespace defines the attributes used for
  +  <namespace name="Apache.AvalonFramework">
  +    The <b>Apache.AvalonFramework</b> namespace defines the attributes used for
       Avalon components.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Activity">
  -    The <b>Apache.Avalon.Framework.Activity</b> namespace defines the startup
  +  <namespace name="Apache.AvalonFramework.Activity">
  +    The <b>Apache.AvalonFramework.Activity</b> namespace defines the startup
       and shutdown interfaces that will be called for Avalon components.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Configuration">
  -    The <b>Apache.Avalon.Framework.Configuration</b> namespace defines the
  +  <namespace name="Apache.AvalonFramework.Configuration">
  +    The <b>Apache.AvalonFramework.Configuration</b> namespace defines the
       interfaces and classes used to configure Avalon components.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Context">
  -    The <b>Apache.Avalon.Framework.Context</b> namespace defines the interfaces
  +  <namespace name="Apache.AvalonFramework.Context">
  +    The <b>Apache.AvalonFramework.Context</b> namespace defines the interfaces
       and classes used to provide contextual/global information to Avalon components.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Logger">
  -    The <b>Apache.Avalon.Framework.Logger</b> namespace defines the interfaces
  +  <namespace name="Apache.AvalonFramework.Logger">
  +    The <b>Apache.AvalonFramework.Logger</b> namespace defines the interfaces
       and classes used to wrap any logging library and provide a standard interface
       for Avalon components.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Parameters">
  -    The <b>Apache.Avalon.Framework.Parameters</b> namespace defines the interfaces
  +  <namespace name="Apache.AvalonFramework.Parameters">
  +    The <b>Apache.AvalonFramework.Parameters</b> namespace defines the interfaces
       and classes used to provide an alternative to the heirarchical configuration
       information.  It provides a flat System.Collections.IDirectory like association
       of names and values.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Service">
  -    The <b>Apache.Avalon.Framework.Service</b> namespace defines the interfaces
  +  <namespace name="Apache.AvalonFramework.Service">
  +    The <b>Apache.AvalonFramework.Service</b> namespace defines the interfaces
       and classes used to find other components for Avalon components.
     </namespace>
  -  <namespace name="Apache.Avalon.Framework.Util">
  -    The <b>Apache.Avalon.Framework.Util</b> namespace defines some utility classes
  +  <namespace name="Apache.AvalonFramework.Util">
  +    The <b>Apache.AvalonFramework.Util</b> namespace defines some utility classes
       used to simplify working with components and configuration info.
     </namespace>
  -</namespaces>
  \ No newline at end of file
  +</namespaces>
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Activity/IDisposable.cs
  
  Index: IDisposable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Activity/IDisposable.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IDisposable.cs	24 Jun 2003 12:18:24 -0000	1.7
  +++ IDisposable.cs	27 Jun 2003 13:41:29 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Activity
  +namespace Apache.AvalonFramework.Activity
   {
   	/// <summary>
   	/// The IDisposable interface is used when components need to    
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Activity/IExecutable.cs
  
  Index: IExecutable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Activity/IExecutable.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IExecutable.cs	24 Jun 2003 12:18:24 -0000	1.7
  +++ IExecutable.cs	27 Jun 2003 13:41:29 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Activity
  +namespace Apache.AvalonFramework.Activity
   {
   	/// <summary>
   	/// The <see cref="IExecutable"/> can be implemented by components
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Activity/IInitializable.cs
  
  Index: IInitializable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Activity/IInitializable.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IInitializable.cs	24 Jun 2003 12:18:24 -0000	1.7
  +++ IInitializable.cs	27 Jun 2003 13:41:29 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Activity
  +namespace Apache.AvalonFramework.Activity
   {
   	/// <summary>
   	/// The <see cref="IInitializable"/> interface is used by components
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Activity/IStartable.cs
  
  Index: IStartable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Activity/IStartable.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IStartable.cs	24 Jun 2003 12:18:24 -0000	1.7
  +++ IStartable.cs	27 Jun 2003 13:41:29 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Activity
  +namespace Apache.AvalonFramework.Activity
   {
   	/// <summary>
   	/// The <see cref="IStartable"/> interface is used when components need to
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Activity/ISuspendable.cs
  
  Index: ISuspendable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Activity/ISuspendable.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ISuspendable.cs	24 Jun 2003 12:18:24 -0000	1.7
  +++ ISuspendable.cs	27 Jun 2003 13:41:29 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Activity
  +namespace Apache.AvalonFramework.Activity
   {
   	/// <summary>
   	/// The <see cref="ISuspendable"/> interface is used when a component 
  
  
  
  1.10      +21 -21    avalon-sandbox/csframework/src/cs/Configuration/AbstractConfiguration.cs
  
  Index: AbstractConfiguration.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/AbstractConfiguration.cs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- AbstractConfiguration.cs	24 Jun 2003 21:16:06 -0000	1.9
  +++ AbstractConfiguration.cs	27 Jun 2003 13:41:30 -0000	1.10
  @@ -49,12 +49,12 @@
   using System;
   using System.Collections;
   
  -using Apache.Avalon.Framework.Util;
  +using Apache.AvalonFramework.Util;
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
  -	/// This is an abstract <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> implementation
  +	/// This is an abstract <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> implementation
   	/// that deals with methods that can be abstracted away
   	/// from underlying implementations.
   	/// </summary>
  @@ -70,10 +70,10 @@
   		private ConfigurationCollection children = new ConfigurationCollection();
   
   		/// <summary>
  -		/// Gets a value indicating whether the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> is read-only.
  +		/// Gets a value indicating whether the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> is read-only.
   		/// </summary>
   		/// <value>
  -		/// <see langword="true"/> if the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> is read-only;
  +		/// <see langword="true"/> if the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> is read-only;
   		/// otherwise, <see langword="false"/>.
   		/// </value>
   		public bool IsReadOnly
  @@ -85,10 +85,10 @@
   		}
   
   		/// <summary>
  -		/// Gets the name of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// Gets the name of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </summary>
   		/// <value>
  -		/// The Name of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// The Name of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </value>
   		public string Name
   		{
  @@ -105,7 +105,7 @@
   		}
   
   		/// <summary>
  -		/// Gets a string describing location of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// Gets a string describing location of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </summary>
   		/// <value>
   		/// A String describing location of the <see cref="IConfiguration"/>.
  @@ -125,10 +125,10 @@
   		}
   
   		/// <summary>
  -		/// Gets the value of <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// Gets the value of <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </summary>
   		/// <value>
  -		/// The Value of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// The Value of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </value>
   		public string Value
   		{
  @@ -145,10 +145,10 @@
   		}
   
   		/// <summary>
  -		/// Gets the namespace of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// Gets the namespace of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </summary>
   		/// <value>
  -		/// The Namespace of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// The Namespace of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </value>
   		public string Namespace
   		{
  @@ -166,10 +166,10 @@
   		}
   
   		/// <summary>
  -		/// Gets the prefix of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// Gets the prefix of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </summary>
   		/// <value>
  -		/// The prefix of the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// The prefix of the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </value>
   		public string Prefix
   		{
  @@ -190,7 +190,7 @@
   		/// <summary>
   		/// Gets all child nodes.
   		/// </summary>
  -		/// <value>The <see cref="Apache.Avalon.Framework.Configuration.ConfigurationCollection"/> of child nodes.</value>
  +		/// <value>The <see cref="Apache.AvalonFramework.Configuration.ConfigurationCollection"/> of child nodes.</value>
   		public ConfigurationCollection Children
   		{
   			get
  @@ -238,12 +238,12 @@
   		}
   
   		/// <summary>
  -		///	Gets a <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> instance encapsulating the specified
  +		///	Gets a <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> instance encapsulating the specified
   		/// child node.
   		/// </summary>
   		/// <param name="child">The Name of the child node.</param>
   		/// <returns>
  -		///	The <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> instance encapsulating the specified
  +		///	The <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> instance encapsulating the specified
   		///	child node.
   		/// </returns>
   		public IConfiguration GetChild(string child)
  @@ -252,18 +252,18 @@
   		}
   
   		/// <summary>
  -		///	Gets a <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> instance encapsulating the specified
  +		///	Gets a <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> instance encapsulating the specified
   		/// child node.
   		/// </summary>
   		/// <param name="child">The Name of the child node.</param>
   		/// <param name="createNew">
  -		///	If <see langword="true"/>, a new <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>
  +		///	If <see langword="true"/>, a new <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>
   		/// will be created and returned if the specified child does not exist.
   		/// If <see langword="false"/>, <see langword="null"/> will be returned when the specified
   		/// child doesn't exist.
   		/// </param>
   		/// <returns>
  -		///	The <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> instance encapsulating the specified
  +		///	The <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> instance encapsulating the specified
   		///	child node.
   		/// </returns>
   		public abstract IConfiguration GetChild(string child, bool createNew);
  @@ -350,7 +350,7 @@
   		/// <summary>
   		/// Check whether this node is readonly or not.
   		/// </summary>
  -		/// <exception cref="Apache.Avalon.Framework.Configuration.ConfigurationException">
  +		/// <exception cref="Apache.AvalonFramework.Configuration.ConfigurationException">
   		/// If this node is readonly then an exception will be thrown.
   		/// </exception>
   		protected void CheckReadOnly()
  
  
  
  1.10      +1 -1      avalon-sandbox/csframework/src/cs/Configuration/ConfigurationCollection.cs
  
  Index: ConfigurationCollection.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/ConfigurationCollection.cs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ConfigurationCollection.cs	24 Jun 2003 12:18:24 -0000	1.9
  +++ ConfigurationCollection.cs	27 Jun 2003 13:41:30 -0000	1.10
  @@ -49,7 +49,7 @@
   using System;
   using System.Collections; 
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
   	/// A collection of <see cref="IConfiguration"/> objects.
  
  
  
  1.9       +1 -1      avalon-sandbox/csframework/src/cs/Configuration/ConfigurationException.cs
  
  Index: ConfigurationException.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/ConfigurationException.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ConfigurationException.cs	24 Jun 2003 12:18:24 -0000	1.8
  +++ ConfigurationException.cs	27 Jun 2003 13:41:30 -0000	1.9
  @@ -49,7 +49,7 @@
   using System;
   using System.Runtime.Serialization; 
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
   	/// Thrown when a <see cref="IConfigurable"/> component cannot be configured
  
  
  
  1.9       +2 -2      avalon-sandbox/csframework/src/cs/Configuration/DefaultConfiguration.cs
  
  Index: DefaultConfiguration.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/DefaultConfiguration.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- DefaultConfiguration.cs	26 Jun 2003 16:00:30 -0000	1.8
  +++ DefaultConfiguration.cs	27 Jun 2003 13:41:30 -0000	1.9
  @@ -50,9 +50,9 @@
   using System.Collections;
   using System.Runtime.Serialization;
   
  -using Apache.Avalon.Framework.Util;
  +using Apache.AvalonFramework.Util;
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
   	/// This is the default <see cref="IConfiguration"/> implementation.
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Configuration/DefaultConfigurationSectionHandler.cs
  
  Index: DefaultConfigurationSectionHandler.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/DefaultConfigurationSectionHandler.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DefaultConfigurationSectionHandler.cs	24 Jun 2003 12:18:24 -0000	1.7
  +++ DefaultConfigurationSectionHandler.cs	27 Jun 2003 13:41:30 -0000	1.8
  @@ -51,7 +51,7 @@
   using System.Configuration; 
   using System.Xml;
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
   	/// This section handler interprets and processes the settings defined in XML tags
  
  
  
  1.13      +1 -1      avalon-sandbox/csframework/src/cs/Configuration/DefaultConfigurationSerializer.cs
  
  Index: DefaultConfigurationSerializer.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/DefaultConfigurationSerializer.cs,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DefaultConfigurationSerializer.cs	24 Jun 2003 12:18:24 -0000	1.12
  +++ DefaultConfigurationSerializer.cs	27 Jun 2003 13:41:30 -0000	1.13
  @@ -51,7 +51,7 @@
   using System.IO;
   using System.Xml;
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
   	/// A Serializer/Deserializer of a <see cref="DefaultConfiguration"/>.
  
  
  
  1.9       +2 -2      avalon-sandbox/csframework/src/cs/Configuration/IConfigurable.cs
  
  Index: IConfigurable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/IConfigurable.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- IConfigurable.cs	24 Jun 2003 21:16:06 -0000	1.8
  +++ IConfigurable.cs	27 Jun 2003 13:41:30 -0000	1.9
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
   	/// This interface should be implemented by classes that need to be
  @@ -62,7 +62,7 @@
   	///	must be called after the constructor, and before any other method.
   	///	</remarks>
   	/// <remarks>
  -	/// Note that this interface is incompatible with <see cref="Apache.Avalon.Framework.Parameter.IParameterizable"/>.
  +	/// Note that this interface is incompatible with <see cref="Apache.AvalonFramework.Parameter.IParameterizable"/>.
   	/// </remarks>
   	public interface IConfigurable
   	{
  
  
  
  1.10      +13 -13    avalon-sandbox/csframework/src/cs/Configuration/IConfiguration.cs
  
  Index: IConfiguration.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Configuration/IConfiguration.cs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- IConfiguration.cs	24 Jun 2003 21:16:06 -0000	1.9
  +++ IConfiguration.cs	27 Jun 2003 13:41:30 -0000	1.10
  @@ -49,10 +49,10 @@
   using System;
   using System.Collections;
   
  -namespace Apache.Avalon.Framework.Configuration
  +namespace Apache.AvalonFramework.Configuration
   {
   	/// <summary>
  -	/// <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> is a interface encapsulating a configuration node
  +	/// <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> is a interface encapsulating a configuration node
   	///	used to retrieve configuration values.
   	/// </summary>
   	public interface IConfiguration
  @@ -69,10 +69,10 @@
   		}
   
   		/// <summary>
  -		/// Gets a string describing location of <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// Gets a string describing location of <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </summary>
   		/// <value>
  -		/// A String describing location of <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>.
  +		/// A String describing location of <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>.
   		/// </value> 
   		string Location
   		{
  @@ -113,10 +113,10 @@
   		}
   
   		/// <summary>
  -		/// Gets a value indicating whether the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> is read-only.
  +		/// Gets a value indicating whether the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> is read-only.
   		/// </summary>
   		/// <value>
  -		/// <see langword="true"/> if the <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> is read-only; otherwise, <see langword="false"/>.
  +		/// <see langword="true"/> if the <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> is read-only; otherwise, <see langword="false"/>.
   		/// </value> 
   		bool IsReadOnly
   		{
  @@ -124,7 +124,7 @@
   		}
   		
   		/// <summary>
  -		/// Gets an <see cref="Apache.Avalon.Framework.Configuration.ConfigurationCollection"/> of <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>
  +		/// Gets an <see cref="Apache.AvalonFramework.Configuration.ConfigurationCollection"/> of <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>
   		/// elements containing all node children.
   		/// </summary>
   		/// <value>The Collection of child nodes.</value>
  @@ -142,29 +142,29 @@
   		}
   		
   		/// <summary>
  -		///	Gets a <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> instance encapsulating the specified
  +		///	Gets a <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> instance encapsulating the specified
   		/// child node.
   		/// </summary>
   		/// <param name="child">The Name of the child node.</param> 
   		/// <param name="createNew">
  -		///	If <see langword="true"/>, a new <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/>
  +		///	If <see langword="true"/>, a new <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/>
   		/// will be created and returned if the specified child does not exist.
   		/// If <see langword="false"/>, <see langword="null"/> will be returned when the specified
   		/// child doesn't exist.
   		/// </param>
   		/// <returns>
  -		/// The <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> instance encapsulating the specified child node.
  +		/// The <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> instance encapsulating the specified child node.
   		/// </returns>  
   		IConfiguration GetChild(string child, bool createNew);
   
   		/// <summary>
  -		/// Return an <see cref="Apache.Avalon.Framework.Configuration.ConfigurationCollection"/> of <see cref="IConfiguration"/>
  +		/// Return an <see cref="Apache.AvalonFramework.Configuration.ConfigurationCollection"/> of <see cref="IConfiguration"/>
   		/// elements containing all node children with the specified name.
   		/// </summary>
   		/// <param name="name">The Name of the children to get.</param> 
   		/// <returns>
  -		/// The <see cref="Apache.Avalon.Framework.Configuration.ConfigurationCollection"/> of
  -		/// <see cref="Apache.Avalon.Framework.Configuration.IConfiguration"/> children of 
  +		/// The <see cref="Apache.AvalonFramework.Configuration.ConfigurationCollection"/> of
  +		/// <see cref="Apache.AvalonFramework.Configuration.IConfiguration"/> children of 
   		/// this associated with the given name.
   		/// </returns> 
   		ConfigurationCollection GetChildren(string name);
  
  
  
  1.9       +1 -1      avalon-sandbox/csframework/src/cs/Context/ContextException.cs
  
  Index: ContextException.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Context/ContextException.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ContextException.cs	24 Jun 2003 12:18:25 -0000	1.8
  +++ ContextException.cs	27 Jun 2003 13:41:30 -0000	1.9
  @@ -49,7 +49,7 @@
   using System;
   using System.Runtime.Serialization; 
   
  -namespace Apache.Avalon.Framework.Context
  +namespace Apache.AvalonFramework.Context
   {
   	/// <summary>
   	/// The Exception signalling a badly formed IContext.
  
  
  
  1.11      +2 -2      avalon-sandbox/csframework/src/cs/Context/DefaultContext.cs
  
  Index: DefaultContext.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Context/DefaultContext.cs,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DefaultContext.cs	26 Jun 2003 18:19:39 -0000	1.10
  +++ DefaultContext.cs	27 Jun 2003 13:41:30 -0000	1.11
  @@ -50,9 +50,9 @@
   using System.Collections;
   using System.Runtime.Serialization; 
   
  -using Apache.Avalon.Framework.Util; 
  +using Apache.AvalonFramework.Util; 
   
  -namespace Apache.Avalon.Framework.Context
  +namespace Apache.AvalonFramework.Context
   {
   	/// <summary>
   	/// Default implementation of IContext.
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Context/IContext.cs
  
  Index: IContext.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Context/IContext.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- IContext.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ IContext.cs	27 Jun 2003 13:41:30 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Context
  +namespace Apache.AvalonFramework.Context
   {
   	/// <summary>
   	/// The context is the interface through which the Component
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Context/IContextualizable.cs
  
  Index: IContextualizable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Context/IContextualizable.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- IContextualizable.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ IContextualizable.cs	27 Jun 2003 13:41:30 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Context
  +namespace Apache.AvalonFramework.Context
   {
   	/// <summary>
   	/// This inteface should be implemented by components that need
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Context/IResolvable.cs
  
  Index: IResolvable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Context/IResolvable.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- IResolvable.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ IResolvable.cs	27 Jun 2003 13:41:30 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Context
  +namespace Apache.AvalonFramework.Context
   {
   	/// <summary>
   	/// This interface is used to indicate objects that need to be
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Logger/AbstractLogEnabled.cs
  
  Index: AbstractLogEnabled.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/AbstractLogEnabled.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AbstractLogEnabled.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ AbstractLogEnabled.cs	27 Jun 2003 13:41:31 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	/// The Utility class to allow construction of easy components
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Logger/ConsoleLogger.cs
  
  Index: ConsoleLogger.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/ConsoleLogger.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ConsoleLogger.cs	24 Jun 2003 21:16:06 -0000	1.7
  +++ ConsoleLogger.cs	27 Jun 2003 13:41:31 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	///	The Logger sending everything to the standard output streams.
  
  
  
  1.6       +1 -1      avalon-sandbox/csframework/src/cs/Logger/DiagnosticsLogger.cs
  
  Index: DiagnosticsLogger.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/DiagnosticsLogger.cs,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DiagnosticsLogger.cs	24 Jun 2003 12:18:25 -0000	1.5
  +++ DiagnosticsLogger.cs	27 Jun 2003 13:41:31 -0000	1.6
  @@ -49,7 +49,7 @@
   using System;
   using System.Diagnostics; 
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	/// The Logger using standart Diagnostics namespace.
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Logger/ILogEnabled.cs
  
  Index: ILogEnabled.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/ILogEnabled.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ILogEnabled.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ ILogEnabled.cs	27 Jun 2003 13:41:31 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	/// Components that need to log can implement this interface to
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Logger/ILogger.cs
  
  Index: ILogger.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/ILogger.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ILogger.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ ILogger.cs	27 Jun 2003 13:41:31 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	/// This is a facade for the different logging subsystems.
  
  
  
  1.10      +1 -1      avalon-sandbox/csframework/src/cs/Logger/Log4netLogger.cs
  
  Index: Log4netLogger.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/Log4netLogger.cs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Log4netLogger.cs	24 Jun 2003 21:16:06 -0000	1.9
  +++ Log4netLogger.cs	27 Jun 2003 13:41:31 -0000	1.10
  @@ -49,7 +49,7 @@
   using System;
   using log4net;
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	/// The default log4net wrapper class for Logger.
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Logger/NullLogger.cs
  
  Index: NullLogger.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Logger/NullLogger.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NullLogger.cs	24 Jun 2003 12:18:25 -0000	1.6
  +++ NullLogger.cs	27 Jun 2003 13:41:31 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Logger
  +namespace Apache.AvalonFramework.Logger
   {
   	/// <summary>
   	///	The Null Logger class.  This is useful for implementations where you need
  
  
  
  1.9       +3 -3      avalon-sandbox/csframework/src/cs/Parameters/IParameterizable.cs
  
  Index: IParameterizable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Parameters/IParameterizable.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- IParameterizable.cs	24 Jun 2003 21:16:06 -0000	1.8
  +++ IParameterizable.cs	27 Jun 2003 13:41:31 -0000	1.9
  @@ -48,14 +48,14 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Parameter
  +namespace Apache.AvalonFramework.Parameter
   {
   	/// <summary>
   	/// Components should implement this interface if they wish to 
   	/// be provided with parameters during startup. This interface
   	/// will be called after IComposable.Compose(...) method and before
  -	/// <see cref="Apache.Avalon.Framework.Activity.IInitializable.Initialize()"/>.
  -	/// It is incompatible with the <see cref="Apache.Avalon.Framework.Configuration.IConfigurable"/> interface.
  +	/// <see cref="Apache.AvalonFramework.Activity.IInitializable.Initialize()"/>.
  +	/// It is incompatible with the <see cref="Apache.AvalonFramework.Configuration.IConfigurable"/> interface.
   	/// </summary>
   	public interface IParameterizable
   	{
  
  
  
  1.9       +1 -1      avalon-sandbox/csframework/src/cs/Parameters/ParameterException.cs
  
  Index: ParameterException.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Parameters/ParameterException.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ParameterException.cs	24 Jun 2003 12:18:26 -0000	1.8
  +++ ParameterException.cs	27 Jun 2003 13:41:31 -0000	1.9
  @@ -49,7 +49,7 @@
   using System;
   using System.Runtime.Serialization; 
   
  -namespace Apache.Avalon.Framework.Parameter
  +namespace Apache.AvalonFramework.Parameter
   {
   	/// <summary>
   	/// Thrown when a <see cref="IParameterizable"/> component cannot be parameterized
  
  
  
  1.13      +2 -2      avalon-sandbox/csframework/src/cs/Parameters/Parameters.cs
  
  Index: Parameters.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Parameters/Parameters.cs,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Parameters.cs	24 Jun 2003 21:16:07 -0000	1.12
  +++ Parameters.cs	27 Jun 2003 13:41:31 -0000	1.13
  @@ -50,9 +50,9 @@
   using System.Collections;
   using System.Runtime.Serialization;
   
  -using Apache.Avalon.Framework.Util;
  +using Apache.AvalonFramework.Util;
   
  -namespace Apache.Avalon.Framework.Parameter
  +namespace Apache.AvalonFramework.Parameter
   {
   	/// <summary>
   	/// The Parameters represents a set of key-value pairs.
  
  
  
  1.9       +1 -1      avalon-sandbox/csframework/src/cs/Service/DefaultServiceManager.cs
  
  Index: DefaultServiceManager.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Service/DefaultServiceManager.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- DefaultServiceManager.cs	24 Jun 2003 21:16:07 -0000	1.8
  +++ DefaultServiceManager.cs	27 Jun 2003 13:41:31 -0000	1.9
  @@ -50,7 +50,7 @@
   using System.Collections;
   using System.Text;
   
  -namespace Apache.Avalon.Framework.Service
  +namespace Apache.AvalonFramework.Service
   {
   	
   	/// <summary>
  
  
  
  1.7       +1 -1      avalon-sandbox/csframework/src/cs/Service/IServiceManager.cs
  
  Index: IServiceManager.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Service/IServiceManager.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- IServiceManager.cs	24 Jun 2003 12:18:26 -0000	1.6
  +++ IServiceManager.cs	27 Jun 2003 13:41:31 -0000	1.7
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Service
  +namespace Apache.AvalonFramework.Service
   {
   	/// <summary>
   	/// A <c>IServiceManager</c> selects components based on a
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Service/IServiceable.cs
  
  Index: IServiceable.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Service/IServiceable.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IServiceable.cs	24 Jun 2003 12:18:26 -0000	1.7
  +++ IServiceable.cs	27 Jun 2003 13:41:31 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Service
  +namespace Apache.AvalonFramework.Service
   {
   	/// <summary>
   	/// A Composable is a class that need to connect to software components using
  
  
  
  1.10      +1 -1      avalon-sandbox/csframework/src/cs/Service/ServiceException.cs
  
  Index: ServiceException.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Service/ServiceException.cs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ServiceException.cs	25 Jun 2003 13:14:02 -0000	1.9
  +++ ServiceException.cs	27 Jun 2003 13:41:31 -0000	1.10
  @@ -49,7 +49,7 @@
   using System;
   using System.Runtime.Serialization; 
   
  -namespace Apache.Avalon.Framework.Service
  +namespace Apache.AvalonFramework.Service
   {
   	/// <summary>
   	/// The Exception thrown to indicate a problem with service.
  
  
  
  1.10      +10 -10    avalon-sandbox/csframework/src/cs/Util/ContainerUtil.cs
  
  Index: ContainerUtil.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Util/ContainerUtil.cs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ContainerUtil.cs	25 Jun 2003 13:14:02 -0000	1.9
  +++ ContainerUtil.cs	27 Jun 2003 13:41:32 -0000	1.10
  @@ -48,15 +48,15 @@
   
   using System;
   
  -using Apache.Avalon.Framework.Activity;
  -using Apache.Avalon.Framework.Logger;
  -using Apache.Avalon.Framework.Context;
  -using Apache.Avalon.Framework.Service;
  -using Apache.Avalon.Framework.Configuration;
  -using Apache.Avalon.Framework.Parameter;
  +using Apache.AvalonFramework.Activity;
  +using Apache.AvalonFramework.Logger;
  +using Apache.AvalonFramework.Context;
  +using Apache.AvalonFramework.Service;
  +using Apache.AvalonFramework.Configuration;
  +using Apache.AvalonFramework.Parameter;
   
   
  -namespace Apache.Avalon.Framework.Util
  +namespace Apache.AvalonFramework.Util
   {
   	/// <summary>
   	///	Utility class that makes it easier to transfer
  @@ -284,7 +284,7 @@
   
   		/// <summary>
   		/// Disposes specified component if it implements the
  -		/// <see cref="Apache.Avalon.Framework.Activity.IDisposable"/> interface.
  +		/// <see cref="Apache.AvalonFramework.Activity.IDisposable"/> interface.
   		/// </summary>
   		/// <param name="component">The Component to dispose.</param>
   		/// <exception cref="Exception">
  @@ -292,9 +292,9 @@
   		/// </exception>
   		public static void Dispose(object component)
   		{
  -			if (component is Apache.Avalon.Framework.Activity.IDisposable)
  +			if (component is Apache.AvalonFramework.Activity.IDisposable)
   			{
  -				((Apache.Avalon.Framework.Activity.IDisposable) component).Dispose();
  +				((Apache.AvalonFramework.Activity.IDisposable) component).Dispose();
   			}
   		}
   	}
  
  
  
  1.8       +1 -1      avalon-sandbox/csframework/src/cs/Util/Converter.cs
  
  Index: Converter.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Util/Converter.cs,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Converter.cs	24 Jun 2003 12:18:27 -0000	1.7
  +++ Converter.cs	27 Jun 2003 13:41:32 -0000	1.8
  @@ -48,7 +48,7 @@
   
   using System;
   
  -namespace Apache.Avalon.Framework.Util
  +namespace Apache.AvalonFramework.Util
   {
   	internal class Converter
   	{
  
  
  
  1.6       +1 -1      avalon-sandbox/csframework/src/cs/Util/RuntimeSerializer.cs
  
  Index: RuntimeSerializer.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/cs/Util/RuntimeSerializer.cs,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RuntimeSerializer.cs	24 Jun 2003 12:18:27 -0000	1.5
  +++ RuntimeSerializer.cs	27 Jun 2003 13:41:32 -0000	1.6
  @@ -50,7 +50,7 @@
   using System.Collections;
   using System.Runtime.Serialization;
   
  -namespace Apache.Avalon.Framework.Util
  +namespace Apache.AvalonFramework.Util
   {
   	/// <summary>
   	///	Utility class that makes it easier to serialize objects.
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/AbstractConfigurationTestCase.cs
  
  Index: AbstractConfigurationTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/AbstractConfigurationTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractConfigurationTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ AbstractConfigurationTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -49,10 +49,10 @@
   using System;
   using System.Collections;
   
  -using Apache.Avalon.Framework.Configuration;
  +using Apache.AvalonFramework.Configuration;
   using NUnit.Framework;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	public abstract class AbstractConfigurationTest
   	{
  
  
  
  1.4       +4 -4      avalon-sandbox/csframework/src/test/AttributesTestCase.cs
  
  Index: AttributesTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/AttributesTestCase.cs,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AttributesTestCase.cs	27 Jun 2003 13:25:23 -0000	1.3
  +++ AttributesTestCase.cs	27 Jun 2003 13:41:32 -0000	1.4
  @@ -47,9 +47,9 @@
   
   using System;
   using NUnit.Framework;
  -using Apache.Avalon.Framework;
  +using Apache.AvalonFramework;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	
   [TestFixture]
  @@ -58,7 +58,7 @@
   	[Test]
   	public void Service()
   	{
  -		string name = "Apache.Avalon.Framework.AvalonAttributeTest";
  +		string name = "Apache.AvalonFramework.AvalonAttributeTest";
   		AvalonService service = new AvalonService( name );
   		Assertion.AssertEquals( name, service.Name );
   	}
  @@ -66,7 +66,7 @@
   	[Test]
   	public void Dependency()
   	{
  -		string name = "Apache.Avalon.Framework.AvalonAttributeTest";
  +		string name = "Apache.AvalonFramework.AvalonAttributeTest";
   		AvalonDependency dependency = new AvalonDependency(name);
   		Assertion.AssertEquals( name, dependency.Name );
   		Assertion.AssertEquals( false, dependency.optional );
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/ConfigurationCollectionTestCase.cs
  
  Index: ConfigurationCollectionTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/ConfigurationCollectionTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ConfigurationCollectionTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ ConfigurationCollectionTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -50,9 +50,9 @@
   using System.Collections; 
   using NUnit.Framework;
   
  -using Apache.Avalon.Framework.Configuration;
  +using Apache.AvalonFramework.Configuration;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class ConfigurationCollectionTest
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/ConfigurationExceptionTestCase.cs
  
  Index: ConfigurationExceptionTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/ConfigurationExceptionTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ConfigurationExceptionTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ ConfigurationExceptionTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -49,9 +49,9 @@
   using System;
   using System.Runtime.Serialization;
   using NUnit.Framework;
  -using Apache.Avalon.Framework.Configuration;
  +using Apache.AvalonFramework.Configuration;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class ConfigurationExceptionTest
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/ContextExceptionTestCase.cs
  
  Index: ContextExceptionTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/ContextExceptionTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ContextExceptionTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ ContextExceptionTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -49,9 +49,9 @@
   using System;
   using System.Runtime.Serialization;
   using NUnit.Framework;
  -using Apache.Avalon.Framework.Context;
  +using Apache.AvalonFramework.Context;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class ContextExceptionTest
  
  
  
  1.2       +3 -3      avalon-sandbox/csframework/src/test/DefaultConfigurationTestCase.cs
  
  Index: DefaultConfigurationTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/DefaultConfigurationTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DefaultConfigurationTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ DefaultConfigurationTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -50,10 +50,10 @@
   using System.Collections;
   using System.Runtime.Serialization;
   
  -using Apache.Avalon.Framework.Configuration;
  +using Apache.AvalonFramework.Configuration;
   using NUnit.Framework;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class DefaultConfigurationTest: AbstractConfigurationTest
  @@ -76,7 +76,7 @@
   
   			for( int i = 0; i < 10; i++ )
   			{
  -				DefaultConfiguration testChild = new DefaultConfiguration( "test", "Apache.Avalon.Framework.DefaultConfigurationTest" );
  +				DefaultConfiguration testChild = new DefaultConfiguration( "test", "Apache.AvalonFramework.DefaultConfigurationTest" );
   				testChild.Value = "value";
   				config.Children.Add( testChild );
   			}
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/DefaultContextTestCase.cs
  
  Index: DefaultContextTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/DefaultContextTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DefaultContextTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ DefaultContextTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -50,10 +50,10 @@
   using System.Collections;
   using System.Runtime.Serialization; 
   
  -using Apache.Avalon.Framework.Context;
  +using Apache.AvalonFramework.Context;
   using NUnit.Framework;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class DefaultContextTest
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/ParameterExceptionTestCase.cs
  
  Index: ParameterExceptionTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/ParameterExceptionTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ParameterExceptionTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ ParameterExceptionTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -49,9 +49,9 @@
   using System;
   using System.Runtime.Serialization;
   using NUnit.Framework;
  -using Apache.Avalon.Framework.Parameter;
  +using Apache.AvalonFramework.Parameter;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class ParameterExceptionTest
  
  
  
  1.2       +2 -2      avalon-sandbox/csframework/src/test/ServiceExceptionTestCase.cs
  
  Index: ServiceExceptionTestCase.cs
  ===================================================================
  RCS file: /home/cvs/avalon-sandbox/csframework/src/test/ServiceExceptionTestCase.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ServiceExceptionTestCase.cs	27 Jun 2003 13:25:23 -0000	1.1
  +++ ServiceExceptionTestCase.cs	27 Jun 2003 13:41:32 -0000	1.2
  @@ -49,9 +49,9 @@
   using System;
   using System.Runtime.Serialization;
   using NUnit.Framework;
  -using Apache.Avalon.Framework.Service;
  +using Apache.AvalonFramework.Service;
   
  -namespace Apache.Avalon.Framework.Test
  +namespace Apache.AvalonFramework.Test
   {
   	[TestFixture]
   	public class ServiceExceptionTest
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org