JVM Languages
jcard.txt
Associated article: Java Card Application Development
Tags: .NET JVM Languages
Published source code accompanying the article by Darryl Barnes in which he examines the Java Card specificiation, a subset of Java designed for smart-card applications. Darryl discusses Java Card and presents a typical smart-card applet.
Java Card Application Development
by Darryl Barnes
Example 1:
public class Loyalty extends javacard.framework.Applet
{
public void static install(APDU _apdu)
{
}
public boolean select()
{
}
public void process(APDU _apdu)
{
}
public void deselect()
{
}
}
Example 2:
public static void install(APDU _apdu)
{
Loyalty ...


