CVS: jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile ComponentProfile.java,1.1,1.2
Peter Donald <pdonald-yCVjj/[email protected]> Mon, 3 Nov 2003 00:19:29 -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-serv21536
Modified Files:
ComponentProfile.java
Log Message:
Remove fqn
Index: ComponentProfile.java
===================================================================
RCS file: /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/util/profile/ComponentProfile.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ComponentProfile.java 16 Oct 2003 14:45:47 -0000 1.1
+++ ComponentProfile.java 3 Nov 2003 06:19:27 -0000 1.2
@@ -12,9 +12,9 @@
/**
* The ComponentProfile defines a component as a conjunction
- * of the {@link org.jcontainer.loom.components.util.info.ComponentInfo} and {@link org.jcontainer.loom.components.util.metadata.ComponentMetaData}.
- * The {@link org.jcontainer.loom.components.util.info.ComponentInfo} defines the type of the component
- * and the {@link org.jcontainer.loom.components.util.metadata.ComponentMetaData} defines the data required to
+ * of the ComponentInfo and ComponentMetaData.
+ * The ComponentInfo defines the type of the component
+ * and the ComponentMetaData defines the data required to
* construct a specific instance of the component.
*
* @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
@@ -28,13 +28,13 @@
public static final ComponentProfile[] EMPTY_SET = new ComponentProfile[ 0 ];
/**
- * The {@link org.jcontainer.loom.components.util.info.ComponentInfo} that describes
+ * The ComponentInfo that describes
* the type of this component.
*/
private final ComponentInfo m_info;
/**
- * The {@link org.jcontainer.loom.components.util.metadata.ComponentMetaData} that describes
+ * The ComponentMetaData that describes
* this component.
*/
private final ComponentMetaData m_metaData;
@@ -42,7 +42,7 @@
/**
* Creation of a new <code>ComponentProfile</code> instance.
*
- * @param metaData the {@link org.jcontainer.loom.components.util.metadata.ComponentMetaData} instance defining the component.
+ * @param metaData the ComponentMetaData instance defining the component.
*/
public ComponentProfile( final ComponentInfo info,
final ComponentMetaData metaData )
@@ -60,7 +60,7 @@
}
/**
- * Returns the underlying {@link org.jcontainer.loom.components.util.info.ComponentInfo} instance.
+ * Returns the underlying ComponentInfo instance.
*
* @return the component info instance
*/
@@ -70,7 +70,7 @@
}
/**
- * Returns the underlying {@link org.jcontainer.loom.components.util.metadata.ComponentMetaData} instance.
+ * Returns the underlying ComponentMetaData instance.
* @return the component meta data instance
*/
public ComponentMetaData getMetaData()