FileDocCategorySizeDatePackage
Panel.javaAPI DocAndroid 1.5 API1390Wed May 06 22:41:08 BST 2009com.android.ddmuilib

Panel

public abstract class Panel extends Object
Base class for our information panels.

Fields Summary
Constructors Summary
Methods Summary
protected abstract org.eclipse.swt.widgets.ControlcreateControl(org.eclipse.swt.widgets.Composite parent)
Creates a control capable of displaying some information. This is called once, when the application is initializing, from the UI thread.

public final org.eclipse.swt.widgets.ControlcreatePanel(org.eclipse.swt.widgets.Composite parent)

        Control panelControl = createControl(parent);

        postCreation();

        return panelControl;
    
protected abstract voidpostCreation()

public abstract voidsetFocus()
Sets the focus to the proper control inside the panel.