KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > navigator > INavigatorContentServiceListener


1 /*******************************************************************************
2  * Copyright (c) 2003, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.navigator;
12
13
14
15 /**
16  * <p>
17  * Used by clients who would like to listen for the load event of am
18  * {@link INavigatorContentExtension}.
19  *
20  *
21  * <p>
22  * Clients may implement this interface.
23  * </p>
24  * @since 3.2
25  */

26 public interface INavigatorContentServiceListener {
27
28     
29     /**
30      * Notifies the listener that the given extension
31      * has now been loaded. Extensions are loaded as
32      * needed as the user expands nodes in the tree viewer.
33      *
34      * @param anExtension The extension that was loaded.
35      */

36     void onLoad(INavigatorContentExtension anExtension);
37 }
38
Popular Tags