1 package nmp.util; 2 3 public class ThreadUtilities 4 { 5 public static void invoke( Runnable doRun) { 6 Thread th = new Thread( doRun); 7 th.start(); 8 } 9 }

This page was automatically generated by Maven