[Ejtools-cvs] CVS: applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/form Det
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-04-25 20:24:11
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/form In directory usw-pr-cvs1:/tmp/cvs-serv28556/form Modified Files: DetailForm.java FilterForm.java Log Message: Pretty print the code Index: DetailForm.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/form/DetailForm.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DetailForm.java 24 Apr 2002 20:01:13 -0000 1.1 --- DetailForm.java 25 Apr 2002 20:24:07 -0000 1.2 *************** *** 13,17 **** public final class DetailForm extends ActionForm { ! private String reference = null; --- 13,18 ---- public final class DetailForm extends ActionForm { ! /** Description of the Field */ ! protected String reference = null; *************** *** 25,35 **** * Setter for the factory attribute * ! * @param factory The new value for factory attribute */ ! public void setReference(String reference ) { ! this.reference = reference ; } /** * Getter for the factory attribute --- 26,37 ---- * Setter for the factory attribute * ! * @param reference The new value for reference attribute */ ! public void setReference(String reference) { ! this.reference = reference; } + /** * Getter for the factory attribute *************** *** 39,44 **** public String getReference() { ! return reference ; } /** --- 41,47 ---- public String getReference() { ! return reference; } + /** Index: FilterForm.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/form/FilterForm.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FilterForm.java 24 Apr 2002 20:01:31 -0000 1.1 --- FilterForm.java 25 Apr 2002 20:24:07 -0000 1.2 *************** *** 13,17 **** public final class FilterForm extends ActionForm { ! private String filter = "*:*"; --- 13,18 ---- public final class FilterForm extends ActionForm { ! /** Description of the Field */ ! protected String filter = "*:*"; *************** *** 25,35 **** * Setter for the factory attribute * ! * @param factory The new value for factory attribute */ public void setFilter(String filter) { ! this.filter= filter; } /** * Getter for the factory attribute --- 26,37 ---- * Setter for the factory attribute * ! * @param filter The new value for filter attribute */ public void setFilter(String filter) { ! this.filter = filter; } + /** * Getter for the factory attribute *************** *** 42,45 **** --- 44,48 ---- } + /** * Description of the Method *************** *** 66,67 **** --- 69,71 ---- } } + |