Jolt 1.2 Developer's Guide

System.err.println("Tranasaction failed: " + failure);
else
{
System.out.println("Transaction is done.");
System.out.println("From Acct Balance: "+xfer.fromBal);
System.out.println(" To Acct Balance: "+xfer.toBal);
}
if ((failure = xfer.doxfer(51334, 40343, "$123.25")) != null)
System.err.println("Tranasaction failed: " + failure);
else
{
System.out.println("Transaction is done.");
System.out.println("From Acct Balance: "+xfer.fromBal);
System.out.println(" To Acct Balance: "+xfer.toBal);
}
}
}
Application Deployment and Localization
The Jolt Class Library allows you to build Java applications that execute from within a client Web browser. For these types of applications, you
need to address the following application development tasks:
Deploying your Jolt application in an HTML page
Localizing your Jolt application for different languages and character sets
The following sections describe these application development considerations.
Deploying a Jolt Applet
When you deploy a Jolt applet, you need to consider the three components that operate together to make the applet function in a Web browser
environment: