[cvs] expresso commit by rauld: removed fixed todos
JCorporate Ltd
jcorp at jcorporate.com
Mon Dec 27 14:33:17 UTC 2004
Log Message:
-----------
removed fixed todos
Modified Files:
--------------
expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/ext/taglib:
InputTag.java
Revision Data
-------------
Index: InputTag.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/ext/taglib/InputTag.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/ext/taglib/InputTag.java -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/ext/taglib/InputTag.java -u -r1.23 -r1.24
--- expresso-web/WEB-INF/src/com/jcorporate/expresso/ext/taglib/InputTag.java
+++ expresso-web/WEB-INF/src/com/jcorporate/expresso/ext/taglib/InputTag.java
@@ -133,7 +133,7 @@
* HTML Element style attribute
*/
private String style=null;
-
+
/**
* HTML Element class attribute
*/
@@ -142,72 +142,72 @@
* HTML Element style Id attribute
*/
private String styleId=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onclick</em>
*/
private String onclick=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.ondblclick</em>
*/
private String ondblclick=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onhelp</em>
*/
private String onhelp=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onkeydown</em>
*/
private String onkeydown=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onkeypress</em>
*/
private String onkeypress=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onkeyup</em>
*/
private String onkeyup=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onmousedown</em>
*/
private String onmousedown=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onmousemove</em>
*/
private String onmousemove=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onmouseout</em>
*/
private String onmouseout=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onmouseover</em>
*/
private String onmouseover=null;
-
+
/**
* Javascript 1.2 property <em>HTMLElement.onmouseup</em>
*/
private String onmouseup=null;
-
+
/**
* Number of rows for a HTML text area
*/
private int rows=4;
-
+
/**
* Number of columns for a HTML text area
*/
private int cols=40;
-
+
/**
* Default rows setting
*/
@@ -217,8 +217,8 @@
* Default columns setting
*/
public final static int DEFAULT_COLUMNS=4;
-
-
+
+
/**
*
*/
@@ -264,7 +264,7 @@
* @param buf
* @return
*/
- protected FastStringBuffer generateStyleClass( FastStringBuffer buf )
+ protected FastStringBuffer generateStyleClass( FastStringBuffer buf )
{
if ( style != null )
buf.append( "style=\""+style+"\" ");
@@ -274,13 +274,13 @@
buf.append( "style=\""+styleId+"\" ");
return buf;
}
-
+
/**
* Generates HTML attributes for the JavaScript event handler
* @param buf
* @return
*/
- protected FastStringBuffer generateEventHandler( FastStringBuffer buf )
+ protected FastStringBuffer generateEventHandler( FastStringBuffer buf )
{
if ( onclick != null )
buf.append( "=\""+onclick+"\" ");
@@ -703,14 +703,14 @@
//first write out the label for this input
//by default, this is false
- /** @todo print </td> when outputting labels *RD* Mon Jul 27 2004 */
+ //print </td> when outputting labels *RD* Mon Jul 27 2004
if (!"".equals(labelToUse)) {
writer.print(labelToUse + "</td> ");
}
}
- /** @todo check if the field is a multi valued select so it can be correctly built *RD* Mon Jul 27 2004 */
+ //check if the field is a multi valued select so it can be correctly built *RD* Mon Jul 27 2004
if (Input.ATTRIBUTE_LISTBOX.equalsIgnoreCase(typeToUse)) {
this.setSize(Integer.toString(oneInput.getLines()));
this.setMultiple(oneInput.getMultiple());
@@ -901,8 +901,8 @@
value = newValue;
} /* setValue(java.lang.String) */
-
-
+
+
/**
* Gets the cols
* @return Returns the cols.
@@ -910,7 +910,7 @@
public int getCols() {
return cols;
}
-
+
/**
* Sets the cols
* @param cols The cols to set.
@@ -918,7 +918,7 @@
public void setCols(int cols) {
this.cols = cols;
}
-
+
/**
* Gets the rows
* @return Returns the rows.
@@ -926,7 +926,7 @@
public int getRows() {
return rows;
}
-
+
/**
* Sets the rows
* @param rows The rows to set.
@@ -934,7 +934,7 @@
public void setRows(int rows) {
this.rows = rows;
}
-
+
/**
* Gets the style
* @return Returns the style.
@@ -942,7 +942,7 @@
public String getStyle() {
return style;
}
-
+
/**
* Sets the style
* @param style The style to set.
@@ -950,7 +950,7 @@
public void setStyle(String style) {
this.style = style;
}
-
+
/**
* Gets the styleClass
* @return Returns the styleClass.
@@ -958,7 +958,7 @@
public String getStyleClass() {
return styleClass;
}
-
+
/**
* Sets the styleClass
* @param styleClass The styleClass to set.
@@ -966,7 +966,7 @@
public void setStyleClass(String styleClass) {
this.styleClass = styleClass;
}
-
+
/**
* Gets the styleId
* @return Returns the styleId.
@@ -974,7 +974,7 @@
public String getStyleId() {
return styleId;
}
-
+
/**
* Sets the styleId
* @param styleId The styleId to set.
@@ -983,7 +983,7 @@
this.styleId = styleId;
}
-
+
/**
* Gets the onclick
* @return Returns the onclick.
More information about the cvs
mailing list