Changeset 3831


Ignore:
Timestamp:
Sep 8, 2010, 10:49:29 AM (13 years ago)
Author:
Gregory Vincic
Message:

Refs #698. Removed VLOGIN from FormFactory

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  
    215215  public static final VString VPWD2 = new VString("pwd2", 1, 32, true);
    216216  public static final VString VANNOVALUE = new VString("value", 0, 255);
    217   public static final VString VLOGIN = new VString("login", 1, 32, true);
    218217  public static final VString VTYPE = new VString("type", 1, 64, true);
    219218  public static final VString VFILE = new VString("file", 1, 512); // Allow
     
    504503  }
    505504
    506 
    507   private TextField<String> newLoginField()
    508   {
    509     TextField<String> loginF = new TextField<String>(VLOGIN);
    510     loginF.setLabel("Login");
    511     return loginF;
    512   }
    513505
    514506  public TextField<Integer> newIdField()
  • trunk/client/servlet/src/org/proteios/gui/form/LoginField.java

    r3797 r3831  
    3838 {
    3939  super(LoginField.VPARAM);
    40   setLabel("Username");
     40  setLabel("Login");
    4141  setCharWidth(15);
    4242  setHelp("Used for authentication");
Note: See TracChangeset for help on using the changeset viewer.