You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2007/07/30 17:43:43 UTC

svn commit: r561018 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java

Author: lofwyr
Date: Mon Jul 30 08:43:42 2007
New Revision: 561018

URL: http://svn.apache.org/viewvc?view=rev&rev=561018
Log:
html in javadoc fixed

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java?view=diff&rev=561018&r1=561017&r2=561018
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java Mon Jul 30 08:43:42 2007
@@ -38,14 +38,14 @@
 
 /**
  *
- * <code>
+ * <pre>
  * columns/rows ::= LAYOUT
  * LAYOUT       ::= TOKEN [";" TOKEN]+
  * TOKEN        ::= FIXED | PIXEL | PROPORTIONAL
  * FIXED        ::= "fixed"
  * PIXEL        ::= NUMBER "px"
  * PROPORTIONAL ::= [NUMBER] "*"
- * </code>
+ * </pre>
 
  <table border="1">
    <tr>
@@ -58,7 +58,7 @@
      <td rowspan="2">FIXED</td>
      <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
      <td>okay</td>
-     <td/>
+     <td></td>
    </tr>
    <tr>
      <!--<td>FIXED</td>-->
@@ -70,33 +70,31 @@
      <td rowspan="2">PIXEL</td>
      <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
      <td>potentially wrong</td>
-     <td>The values depends on each other, the programmer has to keep consitency manually.</td>
+     <td>The values depend on each other, the programmer has to keep consitency manually.</td>
    </tr>
    <tr>
      <!--<td>PIXEL</td>-->
      <td>any combination with at least one PROPORTIONAL 
      <td>okay</td>
-     <td/>
+     <td></td>
    </tr>
    <tr>
      <td rowspan="2">PROPORTIONAL</td>
      <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
      <td>potentially wrong</td>
-     <td>No automatical matching:<br/>  
-       a) to less space: scrollbar<br/>  
+     <td>No automatical matching:<br />  
+       a) to less space: scrollbar<br />  
        b) to much space: elements will be speaded.</td>
    </tr>
    <tr>
      <!--<td>PROPORTIONAL</td>-->
      <td>any combination with at least one PROPORTIONAL 
-     </td>
      <td>okay</td>
-     <td/>
+     <td></td>
    </tr>
  </table>
 
  */
-
 @Tag(name = "gridLayout", bodyContent = BodyContent.EMPTY)
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UIGridLayout",