| Package | Description |
|---|---|
| com.jidesoft.dialog |
The package contains classes related to JDialog for JIDE Common Layer.
|
| Modifier and Type | Field and Description |
|---|---|
protected AbstractDialogPage |
AbstractDialogPage._parentPage |
| Modifier and Type | Method and Description |
|---|---|
AbstractDialogPage |
MultiplePageDialogPane.getCurrentPage()
Gets the current selected page.
|
AbstractDialogPage |
MultiplePageDialog.getCurrentPage()
Gets the current selected page.
|
AbstractDialogPage |
PageList.getCurrentPage()
Gets the current selected page.
|
AbstractDialogPage |
PageList.getPage(int i)
Gets the page at position.
|
AbstractDialogPage |
PageList.getPageByFullTitle(java.lang.String title)
If you know the full title of any page, use this method to get the actual page from the list.
|
AbstractDialogPage |
AbstractDialogPage.getParentPage()
Gets the parent page.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PageList.append(AbstractDialogPage page)
Appends a page to the end of the list.
|
protected javax.swing.tree.MutableTreeNode |
MultiplePageDialogPane.createTreeNode(AbstractDialogPage dialogPage)
Create tree node for TREE_STYLE pages.
|
protected javax.swing.tree.MutableTreeNode |
MultiplePageDialog.createTreeNode(AbstractDialogPage dialogPage)
Create tree node for TREE_STYLE pages.
|
void |
PageList.insertAfter(AbstractDialogPage page,
java.lang.String title)
Inserts a page after the page with the specified full title.
|
void |
PageList.remove(AbstractDialogPage page)
Removes a page from the page list.
|
protected void |
MultiplePageDialogPane.setCurrentPage(AbstractDialogPage currentPage) |
protected void |
MultiplePageDialog.setCurrentPage(AbstractDialogPage currentPage) |
void |
PageList.setCurrentPage(AbstractDialogPage page)
Sets the current selected page.
|
protected void |
MultiplePageDialogPane.setCurrentPage(AbstractDialogPage currentPage,
java.lang.Object source) |
protected void |
MultiplePageDialog.setCurrentPage(AbstractDialogPage currentPage,
java.lang.Object source) |
protected boolean |
PageList.setCurrentPage(AbstractDialogPage page,
java.lang.Object source) |
void |
AbstractDialogPage.setParentPage(AbstractDialogPage parentPage)
Sets the parent page.
|
protected void |
MultiplePageDialogPane.showCurrentPage(AbstractDialogPage currentPage)
Displays the current page.
|
protected void |
MultiplePageDialog.showCurrentPage(AbstractDialogPage currentPage)
Displays the current page.
|
| Constructor and Description |
|---|
AbstractDialogPage(java.lang.String title,
java.lang.String description,
javax.swing.Icon icon,
AbstractDialogPage parentPage)
/** Creates an AbstractDialogPage with title, icon, description and its parent.
|