00001 package edu.rice.cs.hpc.viewer.editor; 00002 00003 import edu.rice.cs.hpc.data.experiment.Experiment; 00004 00005 /**** 00006 * common interface for all editors in hpcviewer 00007 * 00008 * @author laksonoadhianto 00009 * 00010 */ 00011 public interface IViewerEditor { 00012 00013 /**** 00014 * get the title of the editor 00015 */ 00016 public String getEditorPartName(); 00017 00018 /**** 00019 * set the title of the editor 00020 */ 00021 public void setEditorPartName(String title); 00022 00023 /*** 00024 * retrieve the associated experiment of this editor 00025 * @return 00026 */ 00027 public Experiment getExperiment(); 00028 00029 }