Skip to main content
summaryrefslogtreecommitdiffstats
blob: 48d69da3ec9b9acd05251d455d5dd0606f729cd4 (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
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.internal.editors.text;

import org.eclipse.core.resources.IResource;

import org.eclipse.jface.viewers.StructuredSelection;

import org.eclipse.ui.actions.RefreshAction;

import org.eclipse.ui.texteditor.ITextEditor;
import org.eclipse.ui.texteditor.IUpdate;


/**
 * Refresh text editor action.
 *
 * @since 3.3
 */
public class RefreshEditorAction extends RefreshAction implements IUpdate {

	private ITextEditor fTextEditor;

	public RefreshEditorAction(ITextEditor textEditor) {
		super(textEditor.getSite());
		fTextEditor= textEditor;
		update();
	}

	/*
	 * @see org.eclipse.ui.texteditor.IUpdate#update()
	 */
	public void update() {
		final IResource resource= fTextEditor == null ? null : (IResource)fTextEditor.getEditorInput().getAdapter(IResource.class);
		if (resource != null)
			selectionChanged(new StructuredSelection(resource));
		else
			selectionChanged(StructuredSelection.EMPTY);
	}
}

Back to the top