1 11 package org.eclipse.jface.wizard; 12 13 import org.eclipse.jface.operation.IRunnableContext; 14 import org.eclipse.swt.widgets.Shell; 15 16 35 public interface IWizardContainer extends IRunnableContext { 36 43 public IWizardPage getCurrentPage(); 44 45 51 public Shell getShell(); 52 53 66 public void showPage(IWizardPage page); 67 68 79 public void updateButtons(); 80 81 91 public void updateMessage(); 92 93 103 public void updateTitleBar(); 104 105 114 public void updateWindowTitle(); 115 } 116 | Popular Tags |