FileDocCategorySizeDatePackage
ExportTorrentWizardFinishPanel.javaAPI DocAzureus 3.0.3.42392Tue Oct 21 02:38:42 BST 2003org.gudy.azureus2.ui.swt.exporttorrent.wizard

ExportTorrentWizardFinishPanel

public class ExportTorrentWizardFinishPanel extends org.gudy.azureus2.ui.swt.wizard.AbstractWizardPanel
author
parg

Fields Summary
Constructors Summary
public ExportTorrentWizardFinishPanel(ExportTorrentWizard wizard, org.gudy.azureus2.ui.swt.wizard.IWizardPanel previous)

	super(wizard, previous);
  
Methods Summary
public voidfinish()

	wizard.switchToClose();
  
public booleanisPreviousEnabled()

	return( false );
  
public voidshow()

	wizard.setTitle(MessageText.getString("exportTorrentWizard.finish.title"));
	Composite rootPanel = wizard.getPanel();
	GridLayout layout = new GridLayout();
	layout.numColumns = 1;
	rootPanel.setLayout(layout);

	Composite panel = new Composite(rootPanel, SWT.NULL);
	GridData gridData = new GridData(GridData.VERTICAL_ALIGN_CENTER | GridData.FILL_HORIZONTAL);
	panel.setLayoutData(gridData);
	layout = new GridLayout();
	layout.numColumns = 3;
	panel.setLayout(layout);

	Label label = new Label(panel, SWT.WRAP);
	gridData = new GridData();
	gridData.horizontalSpan = 3;
	gridData.widthHint = 380;
	label.setLayoutData(gridData);
	Messages.setLanguageText(label, "exportTorrentWizard.finish.message");