Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2997 - development/main/metro/composition/control/src/main/net/dpml/composition/control

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2997 - development/main/metro/composition/control/src/main/net/dpml/composition/control
  • Date: Wed, 06 Jul 2005 20:55:35 -0400

Author: mcconnell AT dpml.net
Date: Wed Jul 6 20:55:35 2005
New Revision: 2997

Modified:

development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionController.java

development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionPartHandler.java
Log:
more javadoc corrections

Modified:
development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionController.java
==============================================================================
---
development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionController.java
(original)
+++
development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionController.java
Wed Jul 6 20:55:35 2005
@@ -228,7 +228,9 @@

/**
* Construct a new component using the supplied part as the defintion of
the
- * component type and deployment criteria.
+ * component type and deployment criteria. This method is typically used
by
+ * buildtime tools where the buildtime classloader is establised prior to
+ * component deployment.
*
* @param classloader the root classloader
* @param part component definition including type and deployment data
@@ -238,7 +240,7 @@
* @exception DelegationException if an error occurs following handover
of control to a foreign controller
* @exception UnsupportedPartTypeException if the component type is
recognized but not supported
*/
- public Container newContainer( ClassLoader parent, Part part )
+ public Container newContainer( ClassLoader classloader, Part part )
throws ComponentException, PartHandlerNotFoundException,
DelegationException
{
URI partition = getPartition();
@@ -249,7 +251,7 @@
ComponentProfile profile = (ComponentProfile) part;
String name = profile.getName();
URI id = createURI( partition, name );
- return new CompositionHandler( m_logger, this, parent, id,
profile, null );
+ return new CompositionHandler( m_logger, this, classloader,
id, profile, null );
}
else
{

Modified:
development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionPartHandler.java
==============================================================================
---
development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionPartHandler.java
(original)
+++
development/main/metro/composition/control/src/main/net/dpml/composition/control/CompositionPartHandler.java
Wed Jul 6 20:55:35 2005
@@ -97,7 +97,7 @@
* implementation will attempt to locate and delegate part loading
requests
* to the foreign handler.
*
- * @param the part uri
+ * @param uri the part uri
* @return the part estracted from the part referenced by the uri
*/
public Part loadPart( URI uri )



  • svn commit: r2997 - development/main/metro/composition/control/src/main/net/dpml/composition/control, mcconnell, 07/06/2005

Archive powered by MHonArc 2.6.24.

Top of Page