public abstract class AboutBoxPage
extends java.lang.Object
AboutBoxFactory
.Constructor and Description |
---|
AboutBoxPage() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
dump()
Dumps information about this page to a (human readable) String.
|
java.awt.Component |
getComponent()
Get the component for this page.
|
java.awt.Component |
getInitialFocus()
Get the initial focus component for this page.
|
java.lang.String |
getName()
Get the name of this page.
|
protected abstract void |
populate()
Populate this page.
|
void |
setComponent(java.awt.Component component)
Set the component to display on this page.
|
void |
setInitialFocus(java.awt.Component initialFocus)
Set the initial focus component.
|
void |
setName(java.lang.String name)
Set the name of this page.
|
public void setComponent(java.awt.Component component)
component
- the component to display on this page.public java.awt.Component getComponent()
public final void setInitialFocus(java.awt.Component initialFocus)
initialFocus
- the initial focus component, may be null.public final java.awt.Component getInitialFocus()
public final void setName(java.lang.String name)
name
- the (human readable) name of this page.public final java.lang.String getName()
protected abstract void populate()
public java.lang.String dump()
The page is guaranteed to have been populated
and
the getComponent()
method will have been called prior to any
call to dump().
This implementation returns the empty String.