public class TestJKFF { public static void main(String[] argv) { JKFF ff = new JKFF( true ); println("TestJKFF testing..."); printFF( ff ); ff.clock(); printFF( ff ); ff.setJ( 0 ); ff.setK( 0 ); ff.clock(); printFF( ff ); } private static void println( String s ) { System.out.println( s ); } private static void printFF( JKFF ff ) { println( "Present value of FF is " + ff ); } }