FileDocCategorySizeDatePackage
AbstractUISWTInputReceiver.javaAPI DocAzureus 3.0.3.41812Mon Nov 13 14:29:02 GMT 2006org.gudy.azureus2.ui.swt.pluginsimpl

AbstractUISWTInputReceiver

public abstract class AbstractUISWTInputReceiver extends org.gudy.azureus2.pluginsimpl.local.ui.AbstractUIInputReceiver implements org.gudy.azureus2.ui.swt.plugins.UISWTInputReceiver
Extended abstract class which implements the bulk of logic required for the UISWTInputReceiver interface.

Fields Summary
protected boolean
select_preentered_text
protected int
line_height
protected int
width_hint
Constructors Summary
Methods Summary
public voidselectPreenteredText(boolean select)

	    
		this.assertPrePrompt();
		this.select_preentered_text = select;
	
public voidsetLineHeight(int line_height)

	    
		this.assertPrePrompt();
		this.line_height = line_height;
	
public voidsetWidthHint(int width)

	    
		this.assertPrePrompt();
		this.width_hint = width;