This is an old revision of the document!
JPF has two ways to handle native code:
Consider, for example, the following app.
import java.util.Date; public class Now { public static void main(String[] args) { Date now = new Date(); System.out.println(now); } }