本文整理汇总了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();
}
}
示例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;
}
}
示例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 ) );
}
}
}
示例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 ) );
}
}
}
示例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;
}
示例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);
}
}
}
});
}
}
示例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);
}
}
}
});
}
}
示例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();
}
}
示例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()));
}
示例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();
}
}
示例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()));
}
示例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();
}
}
示例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();
}
}
示例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);
}
}
});
}
}
示例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;
}