CVS: jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile ComponentProfile.java,1.3,1.4 PartitionProfile.java,1.2,1.3 ProfileBuilder.java,1.1,1.2

Peter Donald <pdonald-yCVjj/[email protected]> Sat, 29 Nov 2003 07:44:59 -0600
Newsgroups gmane.comp.java.jcontainer.cvs
Message-ID <[email protected]>
Update of /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile
In directory hogshead.codehaus.org:/tmp/cvs-serv31016/loom/engine/src/java/org/jcontainer/loom/components/util/profile

Modified Files:
	ComponentProfile.java PartitionProfile.java 
	ProfileBuilder.java 
Log Message:
Remove email addie

Index: ComponentProfile.java
===================================================================
RCS file: /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile/ComponentProfile.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ComponentProfile.java	3 Nov 2003 06:43:15 -0000	1.3
+++ ComponentProfile.java	29 Nov 2003 13:44:27 -0000	1.4
@@ -11,31 +11,26 @@
 import org.jcontainer.loom.components.util.metadata.ComponentTemplate;
 
 /**
- * The ComponentProfile defines a component as a conjunction
- * of the ComponentInfo and ComponentTemplate.
- * The ComponentInfo defines the type of the component
- * and the ComponentTemplate defines the data required to
+ * The ComponentProfile defines a component as a conjunction of the
+ * ComponentInfo and ComponentTemplate. The ComponentInfo defines the type of
+ * the component and the ComponentTemplate defines the data required to
  * construct a specific instance of the component.
  *
- * @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
+ * @author Peter Donald
  * @version $Revision$ $Date$
  */
 public class ComponentProfile
 {
-    /**
-     * An empty array of component profiles.
-     */
+    /** An empty array of component profiles. */
     public static final ComponentProfile[] EMPTY_SET = new ComponentProfile[ 0 ];
 
     /**
-     * The ComponentInfo that describes
-     * the type of this component.
+     * The ComponentInfo that describes the type of this component.
      */
     private final ComponentInfo m_info;
 
     /**
-     * The ComponentTemplate that describes
-     * this component.
+     * The ComponentTemplate that describes this component.
      */
     private final ComponentTemplate m_metaData;
 
@@ -71,6 +66,7 @@
 
     /**
      * Returns the underlying ComponentTemplate instance.
+     *
      * @return the component meta data instance
      */
     public ComponentTemplate getTemplate()

Index: PartitionProfile.java
===================================================================
RCS file: /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile/PartitionProfile.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- PartitionProfile.java	3 Nov 2003 06:43:15 -0000	1.2
+++ PartitionProfile.java	29 Nov 2003 13:44:27 -0000	1.3
@@ -10,35 +10,29 @@
 import org.jcontainer.loom.components.util.metadata.PartitionTemplate;
 
 /**
- * The PartitionProfile contains the set of data required
- * to construct a specific instance of a Profile. It contains
- * a set of child PartitionProfile and {@link org.jcontainer.loom.components.util.profile.ComponentProfile}
+ * The PartitionProfile contains the set of data required to construct a
+ * specific instance of a Profile. It contains a set of child PartitionProfile
+ * and {@link org.jcontainer.loom.components.util.profile.ComponentProfile}
  * objects.
  *
- * @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
+ * @author Peter Donald
  * @version $Revision$ $Date$
  */
 public class PartitionProfile
 {
-    /**
-     * Constant for an empty set of partitions.
-     */
+    /** Constant for an empty set of partitions. */
     public static final PartitionProfile[] EMPTY_SET = new PartitionProfile[ 0 ];
 
-    /**
-     * The PartitionTemplate for this partition.
-     */
+    /** The PartitionTemplate for this partition. */
     private final PartitionTemplate m_metaData;
 
     /**
-     * An array of partitions that are contained by this
-     * object.
+     * An array of partitions that are contained by this object.
      */
     private final PartitionProfile[] m_partitions;
 
     /**
-     * An array of partitions that are contained by this
-     * object.
+     * An array of partitions that are contained by this object.
      */
     private final ComponentProfile[] m_components;
 

Index: ProfileBuilder.java
===================================================================
RCS file: /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile/ProfileBuilder.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ProfileBuilder.java	16 Oct 2003 14:45:47 -0000	1.1
+++ ProfileBuilder.java	29 Nov 2003 13:44:27 -0000	1.2
@@ -10,23 +10,23 @@
 import java.util.Map;
 
 /**
- * Load metadata for an Assembly from some source.
- * The source is usually one or more xml config files.
+ * Load metadata for an Assembly from some source. The source is usually one or
+ * more xml config files.
  *
- * @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
+ * @author Peter Donald
  * @version $Revision$ $Date$
  */
 public interface ProfileBuilder
 {
     /**
-     * Load metadata from a particular source
-     * using specified map of parameters. The content
-     * of the parameters is left unspecified.
+     * Load metadata from a particular source using specified map of parameters.
+     * The content of the parameters is left unspecified.
      *
-     * @param parameters the parameters indicating method to load meta data source
+     * @param parameters the parameters indicating method to load meta data
+     * source
      * @return the set of components in metadata
-     * @throws java.lang.Exception if unable to load or resolve
-     *         meta data for any reason
+     * @throws java.lang.Exception if unable to load or resolve meta data for
+     * any reason
      */
     PartitionProfile buildProfile( Map parameters )
         throws Exception;