You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2002/10/22 19:29:49 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/swing GbcTag.java ConstraintTag.java

jstrachan    2002/10/22 10:29:49

  Modified:    jelly/src/java/org/apache/commons/jelly/tags/swing
                        GbcTag.java ConstraintTag.java
  Log:
  Patched some Javadoc links to remove some javadoc warnings
  
  Revision  Changes    Path
  1.2       +6 -4      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/swing/GbcTag.java
  
  Index: GbcTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/swing/GbcTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- GbcTag.java	25 Sep 2002 16:26:15 -0000	1.1
  +++ GbcTag.java	22 Oct 2002 17:29:49 -0000	1.2
  @@ -62,6 +62,7 @@
   package org.apache.commons.jelly.tags.swing;
   
   import java.awt.Component;
  +import java.awt.Container;
   import java.awt.GridBagConstraints;
   import java.util.Map;
   
  @@ -76,8 +77,9 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   
  -/** This class represents a {@link GridBagConstraint} constraints as passed in
  - * the second argument of {@link Component#add(Component,Object)}.
  +/** 
  + * This class represents a {@link GridBagConstraints} constraints as passed in
  + * the second argument of {@link Container#add(Component,Object)}.
    * It supports inheritence between such tags in the following fashion:
    * <ul>
    * 	<li>either using a <code>basedOn</code> attribute which is
  @@ -86,10 +88,10 @@
    * </ul>
    * The first version takes precedence.
    * A Grid-bag-constraint inherits from another simply by setting other attributes
  - * as is done in {@link GridBagConstraintBean#setValueFrom}.
  + * as is done in {@link GridBagConstraintBean#setBasedOn}.
    * <p>
    * In essence, it looks really like nothing else than a bean-class...
  - * with {@link #getConstraintObject}.
  + * with {@link #getConstraints}.
    * Probably a shorter java-source is do-able.
    * <p>
    * TODO: this class should probably be extended with special treatment for dimensions
  
  
  
  1.4       +2 -1      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/swing/ConstraintTag.java
  
  Index: ConstraintTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/swing/ConstraintTag.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConstraintTag.java	16 Oct 2002 12:45:52 -0000	1.3
  +++ ConstraintTag.java	22 Oct 2002 17:29:49 -0000	1.4
  @@ -6,6 +6,7 @@
   import java.util.Map;
   
   import java.awt.Component;
  +import java.awt.Container;
   
   import org.apache.commons.beanutils.ConvertUtils;
   
  @@ -29,7 +30,7 @@
   import org.xml.sax.Attributes;
   
   /** This class represents a layout-manager constraints as passed in
  -	* the second argument of {@link Component#add(Component,Object)}.
  +	* the second argument of {@link Container#add(Component,Object)}.
   	*	<p>
   	*	In essence, it looks really like nothing else than a bean-class...
   	*	with {@link #getConstraintObject}.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>