I am developing an application in which I would like to display the username on the top of the screen after the user has logged into the system. Also I need to enable five JMenuItems only after the user has been logged in. I used the following code and called it from the successful logon If condition but it does no change to the application at all.
NOTE :- The username is to be displayed in the JFrame and the login form is a JInternalFrame All JMenuItems are also in the JFrame
obj2 is the object created for the LoginModel class in order to retrieve the username
private String global_username="";
public String getGlobalUsername(){
return global_username;
}
The method which I call to change the state of the JMenuItems and to set the value of the JLabel
public void disableMenues(){
mntmSupplierManagement.setEnabled(false);
mntmEmployeeManagement.setEnabled(false);
mntmStockManagement.setEnabled(false);
mntmReporting.setEnabled(false);
mntmTransaction.setEnabled(false);
userName.setText("Logged in as "+obj2.getGlobalUsername());
}
I used the code below in the JInternalFrame (Login form) in order to call the above method after the user has been logged on
if(username.equals(user)&&password.equals(pass)){
System.out.println("Logged into the system");
global_username=username;
accountType=acc;
updateView();
else{
System.out.println("Unsuccessful login");
updateView();
}
Also I used the following code to create the JLabel
JLabel userName=new JLabel();
userName.setText("Logged in as "+obj2.getGlobalUsername());
This gave me a NullPointerException so I changed it to
userName.setText("Logged in as ");
Any Help is Greatly Appreciated
Thanks in Advance Everyone!!!
obj2is null, but I really can't say why from the code you've shown. – Perception Aug 13 '11 at 11:27obj2is, and why it isnull. (Note, I inferred the last parts of that from what @Perception commented - I have not tried to decipher the code snippets.) – Andrew Thompson Aug 13 '11 at 11:37