class Process implements Runnable{
private ThreadProcessing MIDlet;
public Process(ThreadProcessing MIDlet){
this.MIDlet = MIDlet;
System.out.println("Thread Process...");
}
What is the purpose of using this(ThreadProcessing) here?