Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 74b59ec5a948f3d84100ec591d79920c340f7aac (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
26
27
28
29
30
/*******************************************************************************
 * Copyright (c) 2011 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.ui.interfaces.data;

import org.eclipse.tcf.te.runtime.interfaces.properties.IPropertiesContainer;

/**
 * Public interface for wizard or dialog pages, panel, controls or other UI elements
 * exchanging data via a shared data object.
 */
public interface IDataExchangeNode2 extends IDataExchangeNode {

	/**
	 * Initialize the given properties container with default values for the data this node is
	 * managing.
	 * <p>
	 * This method is called once for each handler. The widgets are typically not yet created as
	 * this method can be called before the node is set visible.
	 *
	 * @param data The properties container or <code>null</code>.
	 */
	public void initializeData(IPropertiesContainer data);
}

Back to the top