IWindowTitle.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.viewer.util;
00002
00003 import org.eclipse.ui.IEditorPart;
00004 import org.eclipse.ui.IViewPart;
00005 import org.eclipse.ui.IWorkbenchWindow;
00006
00007 public interface IWindowTitle {
00008 public String setTitle(IWorkbenchWindow window, IViewPart view);
00009 public String getWindowTitle(IWorkbenchWindow window);
00010 public String setEditorTitle(IWorkbenchWindow window, IEditorPart editorPart);
00011
00012 }