Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 323865 - INavigationNodeListener.beforeActivated() is never called
Summary: INavigationNodeListener.beforeActivated() is never called
Status: CLOSED FIXED
Alias: None
Product: Riena
Classification: RT
Component: navigation (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows Vista
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-08-27 15:37 EDT by Elias Volanakis CLA
Modified: 2016-10-04 08:12 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.