Artifact 3ea41d892c435668aaba3dc40fad1af962e30493:
- File f-apps/f_checkin.java — part of check-in [8625a31eff] at 2014-03-17 15:27:49 on branch trunk — rename java namespace, and (ongoing) go a little bit further in actually doing something. (user: jan.nijtmans size: 310)
import org.fossil_scm.libfossil.Checkout; public class f_checkin { public static void main(String[] args){ // Just create a "Checkout" object and dispose it, for now. // TODO: eventually this should do the same as f-checkin.c Checkout checkout = new Checkout(args[1], 0); checkout.dispose(); } }