1 11 package org.eclipse.ui.forms.editor; 12 import org.eclipse.swt.widgets.Control; 13 import org.eclipse.ui.IEditorPart; 14 import org.eclipse.ui.forms.IManagedForm; 15 37 public interface IFormPage extends IEditorPart { 38 42 void initialize(FormEditor editor); 43 48 FormEditor getEditor(); 49 54 IManagedForm getManagedForm(); 55 65 void setActive(boolean active); 66 71 boolean isActive(); 72 80 boolean canLeaveThePage(); 81 87 Control getPartControl(); 88 94 String getId(); 95 100 int getIndex(); 101 107 void setIndex(int index); 108 116 boolean isEditor(); 117 129 boolean selectReveal(Object object); 130 } 131 | Popular Tags |