Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 29b35437813fece53e353f480f905cfff7118288 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************************************
 * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.core.listeners.interfaces;

/**
 * Interface for clients to implement that wishes to listen
 * for the TCF protocol framework to come up and shutdown.
 */
public interface IProtocolStateChangeListener {

	/**
	 * Invoked if the TCF framework comes up, <i>state == true</i>, or
	 * if it shuts down, <i>state == false</i>.
	 *
	 * @param state The current TCF framework state.
	 */
	public void stateChanged(boolean state);
}

Back to the top