[jboss-cvs] jboss-seam/src/main/org/jboss/seam/init ...
Gavin King
gavin.king at jboss.com
Fri Jun 22 02:53:54 EDT 2007
User: gavin
Date: 07/06/22 02:53:54
Modified: src/main/org/jboss/seam/init ComponentDescriptor.java
DependencyManager.java DeploymentDescriptor.java
Log:
javadoc
Revision Changes Path
1.8 +8 -2 jboss-seam/src/main/org/jboss/seam/init/ComponentDescriptor.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ComponentDescriptor.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/init/ComponentDescriptor.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- ComponentDescriptor.java 21 Jun 2007 16:20:38 -0000 1.7
+++ ComponentDescriptor.java 22 Jun 2007 06:53:54 -0000 1.8
@@ -9,8 +9,14 @@
import org.jboss.seam.core.Init;
import org.jboss.seam.servlet.AbstractResource;
-public class ComponentDescriptor
- implements Comparable<ComponentDescriptor>
+/**
+ * Meta-data about an EJB, discovered from a deployment
+ * descriptor.
+ *
+ * @author Norman Richards
+ *
+ */
+public class ComponentDescriptor implements Comparable<ComponentDescriptor>
{
protected String name;
protected Class<?> componentClass;
1.6 +7 -0 jboss-seam/src/main/org/jboss/seam/init/DependencyManager.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: DependencyManager.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/init/DependencyManager.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- DependencyManager.java 21 Jun 2007 02:29:39 -0000 1.5
+++ DependencyManager.java 22 Jun 2007 06:53:54 -0000 1.6
@@ -7,6 +7,13 @@
import java.util.Set;
import java.util.TreeSet;
+/**
+ * Evaluates component dependencies to determine which
+ * components are installed.
+ *
+ * @author Norman Richards
+ *
+ */
public class DependencyManager
{
private Map<String, Set<ComponentDescriptor>> componentDescriptors;
1.4 +6 -0 jboss-seam/src/main/org/jboss/seam/init/DeploymentDescriptor.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: DeploymentDescriptor.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/init/DeploymentDescriptor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- DeploymentDescriptor.java 21 Jun 2007 02:56:16 -0000 1.3
+++ DeploymentDescriptor.java 22 Jun 2007 06:53:54 -0000 1.4
@@ -12,6 +12,12 @@
import org.jboss.seam.log.Logging;
import org.jboss.seam.util.XML;
+/**
+ * Parser for ejb-jar.xml and orm.xml deployment descriptors
+ *
+ * @author Norman Richards
+ *
+ */
public class DeploymentDescriptor
{
private static final LogProvider log = Logging.getLogProvider(Initialization.class);
More information about the jboss-cvs-commits
mailing list