Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [cdt-debug-dev] AW: getting current debug session

Hi,

the MISessionObserver is just a little diagnostic class I did to learn
more about the API:

public class MISessionObserver implements Observer {

	public void update(Observable arg0, Object arg1) {
		System.out.println("Update "+arg0.getClass().getName()+"
- "+arg1.getClass().getName());

	}

} 

It is not relevant for what you want to do.

Greets


Norbert




Back to the top