frame.messlab.setText(returned + " " + messages.getString("NotFoundException"));
}
}
protected void createActInf(int currentFunction, String returned) {
AccountDetails details = null;
//View Account Information
if((currentFunction == 4) && (returned.length() > 0)) {
try {
details = account.getDetails(returned);
boolean readonly = true;
frame.setDescription(details.getDescription());
ArrayList alist = new ArrayList();
alist = details.getCustomerIds();
frame.createActFields(readonly, details.getType(),
details.getBalance(), details.getCreditLine(),
details.getBeginBalance(), alist,
details.getBeginBalanceTimeStamp());
} catch (AccountNotFoundException ex) {
frame.resetPanelTwo();
frame.messlab3.setText(messages.getString("AccountException") + " " +
returned + " " + messages.getString("NotFoundException"));
} catch (RemoteException ex) {