Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ public class ActionMessages extends NLS {

public static String LambdaSelectionDialog_title;

public static String LambdaSelectionDialog_filter;

static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, ActionMessages.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,5 @@ Override_Dependencies_button=&Override
Override_Dependencies_button1=&Override Dependencies...
Override_Dependencies_label1=Dependencies derived from the Java Build Path:
Override_Dependencies_label2=Dependencies for launching:
LambdaSelectionDialog_title=Select lambda
LambdaSelectionDialog_title=Select lambda
LambdaSelectionDialog_filter=Type to filter the list of lambda expressions
Original file line number Diff line number Diff line change
Expand Up @@ -1990,6 +1990,7 @@ static int selectLambda(List<LambdaExpression> lambdaExps) {
ElementListSelectionDialog dialog = new LambdaSelectionDialog(DebugUIPlugin.getShellForModalDialog(), lambdaLabelProvider, lambdaExps, lambdaNames);
dialog.setMultipleSelection(false);
dialog.setTitle(ActionMessages.LambdaSelectionDialog_title);
dialog.setMessage(ActionMessages.LambdaSelectionDialog_filter);
dialog.setElements(lambdaExps.toArray());
dialog.open();
if (dialog.getReturnCode() == Window.OK) {
Expand Down
Loading