Changeset 3831
- Timestamp:
- Sep 8, 2010, 10:49:29 AM (13 years ago)
- Location:
- trunk/client/servlet/src/org/proteios/gui/form
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/org/proteios/gui/form/FormFactory.java
r3830 r3831 215 215 public static final VString VPWD2 = new VString("pwd2", 1, 32, true); 216 216 public static final VString VANNOVALUE = new VString("value", 0, 255); 217 public static final VString VLOGIN = new VString("login", 1, 32, true);218 217 public static final VString VTYPE = new VString("type", 1, 64, true); 219 218 public static final VString VFILE = new VString("file", 1, 512); // Allow … … 504 503 } 505 504 506 507 private TextField<String> newLoginField()508 {509 TextField<String> loginF = new TextField<String>(VLOGIN);510 loginF.setLabel("Login");511 return loginF;512 }513 505 514 506 public TextField<Integer> newIdField() -
trunk/client/servlet/src/org/proteios/gui/form/LoginField.java
r3797 r3831 38 38 { 39 39 super(LoginField.VPARAM); 40 setLabel(" Username");40 setLabel("Login"); 41 41 setCharWidth(15); 42 42 setHelp("Used for authentication");
Note: See TracChangeset
for help on using the changeset viewer.