Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2956d4f58971ba0ca2e26c78ab3de06963e2b4b2 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2016, 2018 Obeo.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors: Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.eef.core.api.controllers;

import java.util.function.Consumer;

/**
 * The Widget controller is responsible for the refresh of the label of a widget.
 *
 * @author sbegaudeau
 */
public interface IEEFWidgetController extends IEEFController {
	/**
	 * Register a consumer which will be called with the new value of the label when it will change.
	 *
	 * @param consumer
	 *            The consumer of the new value of the label
	 */
	void onNewLabel(Consumer<String> consumer);

	/**
	 * Remove the consumer of the new value of the label.
	 */
	void removeNewLabelConsumer();

	/**
	 * Registers a consumer which will be called with the new value of the help.
	 *
	 * @param consumer
	 *            The consumer of the new value of the help
	 */
	void onNewHelp(Consumer<String> consumer);

	/**
	 * Removes the consumer of the new value of the help.
	 */
	void removeNewHelpConsumer();

	/**
	 * Compute the help message.
	 */
	void computeHelp();
}

Back to the top