Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fb97ed53ec55d30315fc98eea3d42d400377a37a (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
/*******************************************************************************
 * Copyright (c) 2007, 2013 David Green and others.
 * 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:
 *     David Green - initial API and implementation
 *******************************************************************************/
package org.eclipse.mylyn.internal.wikitext.ui.editor.actions;

import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.mylyn.internal.wikitext.ui.editor.MarkupEditor;
import org.eclipse.mylyn.wikitext.ui.WikiText;

/**
 * @author David Green
 */
public class SetMarkupLanguageAction extends Action {

	private final MarkupEditor markupEditor;

	private final String markupLanguageName;

	private final boolean checked;

	public SetMarkupLanguageAction(MarkupEditor markupEditor, String markupLanguageName, boolean checked) {
		super(markupLanguageName, IAction.AS_CHECK_BOX);
		setChecked(checked);
		this.markupEditor = markupEditor;
		this.markupLanguageName = markupLanguageName;
		this.checked = checked;
	}

	@Override
	public void run() {
		if (checked) {
			return;
		}
		markupEditor.setMarkupLanguage(WikiText.getMarkupLanguage(markupLanguageName), true);
	}
}

Back to the top