Eclipse Platform
2.0

org.eclipse.jface.util
Interface IOpenEventListener


public interface IOpenEventListener

Listener for open events which are generated on selection of default selection depending on the user preferences.

Usage:

	OpenStrategy handler = new OpenStrategy(control);
	handler.addOpenListener(new IOpenEventListener() {
		public void handleOpen(SelectionEvent e) {
			... // code to handle the open event.
		}
	});
 

See Also:
OpenStrategy

Method Summary
 void handleOpen(SelectionEvent e)
          Called when a selection or default selection occurs depending on the user preference.
 

Method Detail

handleOpen

public void handleOpen(SelectionEvent e)
Called when a selection or default selection occurs depending on the user preference.


Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.