当前位置: 首页>>代码示例>>Java>>正文


Java FileEditorInput类代码示例

本文整理汇总了Java中org.eclipse.ui.part.FileEditorInput的典型用法代码示例。如果您正苦于以下问题:Java FileEditorInput类的具体用法?Java FileEditorInput怎么用?Java FileEditorInput使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


FileEditorInput类属于org.eclipse.ui.part包,在下文中一共展示了FileEditorInput类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: initializeGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
protected void initializeGraphicalViewer() {
	super.initializeGraphicalViewer();
	getGraphicalViewer().setRootEditPart(new ScalableFreeformRootEditPart());
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	setPartName(inp.getFile().getName());
	try {
		String path = inp.getFile().getLocation().toOSString();
		String text = FileUtils.readFileToString(new File(path));
		CompositeNode node = parse(text);
		root = new CompositeEditPart(node, inp.getFile().getProject().getFullPath().toOSString());
		getGraphicalViewer().setContents(root);
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:InitAssemblyEditor.java

示例2: getActiveEditorFile

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
/**
 * Returns the opened file of the currently active editor.
 *
 * Returns null if no editor is open.
 */
private static IFile getActiveEditorFile() {
	IEditorPart activeEditor = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
			.getActiveEditor();

	if (null == activeEditor) {
		return null;
	}

	IEditorInput input = activeEditor.getEditorInput();

	if (input instanceof FileEditorInput) {
		return ((FileEditorInput) input).getFile();
	} else {
		return null;
	}

}
 
开发者ID:eclipse,项目名称:n4js,代码行数:23,代码来源:CreateNewN4JSElementInModuleHandler.java

示例3: doSaveAs

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
/**
 * This also changes the editor's input.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void doSaveAs ()
{
    SaveAsDialog saveAsDialog = new SaveAsDialog ( getSite ().getShell () );
    saveAsDialog.open ();
    IPath path = saveAsDialog.getResult ();
    if ( path != null )
    {
        IFile file = ResourcesPlugin.getWorkspace ().getRoot ().getFile ( path );
        if ( file != null )
        {
            doSaveAs ( URI.createPlatformResourceURI ( file.getFullPath ().toString (), true ), new FileEditorInput ( file ) );
        }
    }
}
 
开发者ID:eclipse,项目名称:neoscada,代码行数:22,代码来源:ProtocolEditor.java

示例4: doSaveAs

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
/**
 * This also changes the editor's input.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
@Override
public void doSaveAs ()
{
    final SaveAsDialog saveAsDialog = new SaveAsDialog ( getSite ().getShell () );
    saveAsDialog.open ();
    final IPath path = saveAsDialog.getResult ();
    if ( path != null )
    {
        final IFile file = ResourcesPlugin.getWorkspace ().getRoot ().getFile ( path );
        if ( file != null )
        {
            doSaveAs ( URI.createPlatformResourceURI ( file.getFullPath ()
                    .toString (), true ), new FileEditorInput ( file ) );
        }
    }
}
 
开发者ID:eclipse,项目名称:neoscada,代码行数:24,代码来源:ChartEditor.java

示例5: execute

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
	IFile file = getSelectedFile();
	if (file==null){
		return null;
	}
	IWorkbenchPage page = EclipseUtil.getActivePage();
	if (page==null){
		return null;
	}
	try {
		page.openEditor(new FileEditorInput(file), BashEditor.EDITOR_ID);
	} catch (PartInitException e) {
		throw new ExecutionException("Was not able to open bash editor for file:"+file.getName(),e);
	}
	return null;
}
 
开发者ID:de-jcup,项目名称:eclipse-bash-editor,代码行数:18,代码来源:OpenWithBashEditor.java

示例6: resourceChanged

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
/**
 * Closes all project files on project close.
 */
public void resourceChanged(final IResourceChangeEvent event) {
	if (event.getType() == IResourceChangeEvent.PRE_CLOSE) {
		Display.getDefault().asyncExec(new Runnable() {
			public void run() {
				IWorkbenchPage[] pages = getSite().getWorkbenchWindow().getPages();
				for (int i = 0; i < pages.length; i++) {
					if (((FileEditorInput) editor.getEditorInput()).getFile().getProject().equals(event.getResource())) {
						IEditorPart editorPart = pages[i].findEditor(editor.getEditorInput());
						pages[i].closeEditor(editorPart, true);
					}
				}
			}
		});
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:19,代码来源:TypesEditor.java

示例7: resourceChanged

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
public void resourceChanged(IResourceChangeEvent event) {
	if (event.getType() == IResourceChangeEvent.PRE_CLOSE) {
		Display.getDefault().asyncExec(new Runnable() {
			public void run() {
				IWorkbenchPage[] pages = getSite().getWorkbenchWindow().getPages();
				for (int i = 0; i < pages.length; i++) {
					if (((FileEditorInput) getEditorInput()).getFile().getProject().equals(event.getResource())) {
						IEditorPart editorPart = pages[i].findEditor(getEditorInput());
						pages[i].closeEditor(editorPart, true);
					}
				}
			}
		});
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:IntLogicalSysEditor.java

示例8: initializeGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
protected void initializeGraphicalViewer() {
	super.initializeGraphicalViewer();
	getGraphicalViewer().setRootEditPart(new ScalableFreeformRootEditPart());
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	setPartName(inp.getFile().getName());
	try {
		String path = inp.getFile().getLocation().toOSString();
		String text = FileUtils.readFileToString(new File(path));
		LogicalSystemNode node = parse(text);
		root = new LogicalSystemEditPart(node, inp.getFile().getProject().getFullPath().toOSString());
		getGraphicalViewer().setContents(root);
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:IntLogicalSysEditor.java

示例9: configureGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
protected void configureGraphicalViewer() {
	super.configureGraphicalViewer();
	EditPartFactory factory = new EditPartFactory();
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	factory.setContainerName(inp.getFile().getProject().getFullPath().toOSString());
	getGraphicalViewer().setEditPartFactory(factory);
	((FigureCanvas) getGraphicalControl()).setScrollBarVisibility(FigureCanvas.ALWAYS);
	getActionRegistry().registerAction(new ExportImageAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new ExportAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new GenerateAPIAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new GenerateINTAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new GenerateUIDAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new ClearTargetAction(this, inp.getFile().getProject().getFullPath()));
	getGraphicalViewer().setContextMenu(new ContextMenuProvider(getGraphicalViewer(), getActionRegistry()));
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:IntLogicalSysEditor.java

示例10: initializeGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
public void initializeGraphicalViewer() {
	super.initializeGraphicalViewer();
	getGraphicalViewer().setRootEditPart(new ScalableFreeformRootEditPart());
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	setPartName(inp.getFile().getName());
	try {
		String path = inp.getFile().getLocation().toOSString();
		String text = FileUtils.readFileToString(new File(path));
		CompositeNode node = parse(text);
		root = new CompositeEditPart(node, inp.getFile().getProject().getFullPath().toOSString());
		getGraphicalViewer().setContents(root);
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:IntFinalAssemblyEditor.java

示例11: configureGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
protected void configureGraphicalViewer() {
	super.configureGraphicalViewer();
	EditPartFactory factory = new EditPartFactory();
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	factory.setContainerName(inp.getFile().getProject().getFullPath().toOSString());
	getGraphicalViewer().setEditPartFactory(factory);
	((FigureCanvas) getGraphicalControl()).setScrollBarVisibility(FigureCanvas.ALWAYS);
	getActionRegistry().registerAction(new ExportImageAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new ExportAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new GenerateAPIAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new GenerateINTAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new GenerateUIDAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new ClearTargetAction(this, inp.getFile().getProject().getFullPath()));
	getActionRegistry().registerAction(new RefreshAction(this, inp.getFile().getProject().getFullPath(), inp.getFile()));
	getGraphicalViewer().setContextMenu(new ContextMenuProvider(getGraphicalViewer(), getActionRegistry()));
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:18,代码来源:IntFinalAssemblyEditor.java

示例12: initializeGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
public void initializeGraphicalViewer() {
	super.initializeGraphicalViewer();
	getGraphicalViewer().setRootEditPart(new ScalableFreeformRootEditPart());
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	setPartName(inp.getFile().getName());
	try {
		String path = inp.getFile().getLocation().toOSString();
		String text = FileUtils.readFileToString(new File(path));
		DeploymentNode node = parse(text);
		root = new DeploymentEditPart(node, inp.getFile().getProject().getFullPath().toOSString());
		getGraphicalViewer().setContents(root);
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:IntDeploymentEditor.java

示例13: initializeGraphicalViewer

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
@Override
public void initializeGraphicalViewer() {
	super.initializeGraphicalViewer();
	getGraphicalViewer().setRootEditPart(new ScalableFreeformRootEditPart());
	FileEditorInput inp = (FileEditorInput) getEditorInput();
	setPartName(inp.getFile().getName());
	try {
		String path = inp.getFile().getLocation().toOSString();
		String text = FileUtils.readFileToString(new File(path));
		ComponentImplementationNode node = parse(text);
		root = new ComponentImplementationEditPart(node, inp.getFile().getProject().getFullPath().toOSString());
		getGraphicalViewer().setContents(root);
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:dstl,项目名称:Open_Source_ECOA_Toolset_AS5,代码行数:17,代码来源:CompImplEditor.java

示例14: init

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
public void init(IEditorSite site, IEditorInput input) throws PartInitException {
	super.init(site, input);
	setSite(site);
	setPartName(input.getName());
	setInputWithNotify(input);
	site.setSelectionProvider(this);
	if (getEditorInput() instanceof FileEditorInput) {
		FileEditorInput fei = (FileEditorInput) getEditorInput();
		IFile file = fei.getFile();
		gWGraph = ResourceManager.load(file);
		Display.getDefault().asyncExec(new Runnable() {
			@Override
			public void run() {
				gWGraph.initialize(getGraphicalViewer().getEditPartRegistry());
				if (!ResourceManager.isEditable(file)) {
					gWGraph.setReadOnly(true);
					getGraphicalViewer().getControl().setEnabled(false);
					String title = MessageUtil.getString("conversion");
					String message = MessageUtil.getString("not_formatted_as_json_convert_it");
					DialogManager.displayWarning(title, message);
				}
			}
		});
	}

}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:27,代码来源:GW4EEditor.java

示例15: getEditedFileFolder

import org.eclipse.ui.part.FileEditorInput; //导入依赖的package包/类
public static File getEditedFileFolder() {
	IWorkbenchPage page = null;
	IWorkbenchWindow[] windows = PlatformUI.getWorkbench().getWorkbenchWindows();
	for (int i = 0; i < windows.length; i++) {
		if (windows[i] != null) {
			IWorkbenchWindow window = windows[i];
			page = windows[i].getActivePage();
			if (page != null)
				break;
		}
	}
	IEditorPart part = page.getActiveEditor();
	FileEditorInput editor = (FileEditorInput) part.getEditorInput();
	IFile file = editor.getFile();
	IFolder folder = (IFolder) file.getParent();
	File f = null;
	try {
		f = ResourceManager.toFile(folder.getFullPath());
	} catch (FileNotFoundException e) {
		ResourceManager.logException(e);
	}
	return f;
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:24,代码来源:EditorHelper.java


注:本文中的org.eclipse.ui.part.FileEditorInput类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。