Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 323865

Summary: INavigationNodeListener.beforeActivated() is never called
Product: [RT] Riena Reporter: Elias Volanakis <elias>
Component: navigationAssignee: Project Inbox <riena.core-inbox>
Status: CLOSED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: christian.campo
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows Vista   
Whiteboard:

Description Elias Volanakis CLA 2010-08-27 15:37:18 EDT
To reproduce: 

1. Go to a controller.
2. Add this:

	getNavigationNode().addSimpleListener(new SimpleNavigationNodeAdapter() {
			@Override
			public void beforeActivated(final INavigationNode<?> source) {
				System.out.println("### beforeActivated");
			}
		});
		
3. Open the corresponding view.

The system.out is never printed. Another example: ChoiceSubModuleController, line 129.

It appears that the method that does notify the listeners is never called.