public class SelectFilesConfiguration
extends java.lang.Object
SelectFilesPanel.| Constructor and Description | 
|---|
SelectFilesConfiguration()
Constructor. 
 | 
SelectFilesConfiguration(java.awt.Component parent,
                        java.lang.String title,
                        java.lang.String filePrompt,
                        java.lang.String listPrompt,
                        CheckBoxListModel listModel,
                        boolean checkedList,
                        int buttons,
                        java.lang.String helpTopic)
Constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getButtons()
Gets the buttons to display in the dialog/prompt. 
 | 
java.lang.String | 
getDescription()  | 
java.lang.String | 
getFilePrompt()
Gets the label to show above the files list. 
 | 
java.lang.String | 
getHelpTopic()
Gets a string indicating the associate help topic. 
 | 
CheckBoxListModel | 
getListModel()
Gets the listModel to display. 
 | 
java.lang.String | 
getListPrompt()
Gets the label for the message prompt. 
 | 
java.lang.String | 
getOptionalId()
Gets a unique identifier for this dialog used to remember whether the
 dialog is skipped 
 | 
java.awt.Component | 
getParent()
Gets the parent Component for the dialog. 
 | 
java.lang.String | 
getTitle()
Gets the dialog title. 
 | 
boolean | 
isCheckedList()
Asks whether or not the list should show checkboxes. 
 | 
void | 
setButtons(int buttons)
Sets the buttons to display in the dialog/prompt. 
 | 
void | 
setCheckedList(boolean checkedList)
Sets whether or not the list should show checkboxes. 
 | 
void | 
setDescription(java.lang.String description)  | 
void | 
setFilePrompt(java.lang.String filePrompt)
Sets the label to show above the files list. 
 | 
void | 
setHelpTopic(java.lang.String helpTopic)
Sets a string indicating the associate help topic. 
 | 
void | 
setListModel(CheckBoxListModel listModel)
Sets the listModel to display. 
 | 
void | 
setListPrompt(java.lang.String listPrompt)
Sets the label for the message prompt. 
 | 
void | 
setOptionalId(java.lang.String optionalId)
Sets a unique identifier for this dialog used to remember whether the
 dialog is skipped. 
 | 
void | 
setParent(java.awt.Component parent)
Sets the parent Component for the dialog. 
 | 
void | 
setTitle(java.lang.String title)
Sets the dialog title. 
 | 
public SelectFilesConfiguration()
public SelectFilesConfiguration(java.awt.Component parent,
                        java.lang.String title,
                        java.lang.String filePrompt,
                        java.lang.String listPrompt,
                        CheckBoxListModel listModel,
                        boolean checkedList,
                        int buttons,
                        java.lang.String helpTopic)
parent - the parent Component for the dialog.title - the dialog title.filePrompt - the label to show above the files list.listPrompt - the label for the message prompt.listModel - the listModel to display.checkedList - a boolean indicating whether or not the list should
  show checkboxes.buttons - the buttons to display in the dialog/prompt: OK_OPTION,
  OK_CANCEL_OPTION, YES_NO_OPTION or YES_NO_CANCEL_OPTION. Note, the Help
  button is always shown.
  Note about buttons: The dialog containing the checking list of files will,
  by default, show OK, Cancel and Help buttons. The cancel button is not
  shown when helpTopic - a string indicating the associate help topic.public java.awt.Component getParent()
public void setParent(java.awt.Component parent)
parent - the parent Component.public java.lang.String getTitle()
public void setTitle(java.lang.String title)
title - the dialog title.public java.lang.String getFilePrompt()
public void setFilePrompt(java.lang.String filePrompt)
filePrompt - the file prompt.public java.lang.String getListPrompt()
public void setListPrompt(java.lang.String listPrompt)
listPrompt - the message prompt.public CheckBoxListModel getListModel()
public void setListModel(CheckBoxListModel listModel)
listModel - the listModel..public boolean isCheckedList()
public void setCheckedList(boolean checkedList)
checkedList - a decision on a checked list.public int getButtons()
public void setButtons(int buttons)
buttons - the button mode.public java.lang.String getHelpTopic()
public void setHelpTopic(java.lang.String helpTopic)
helpTopic - the help topic.public java.lang.String getOptionalId()
public void setOptionalId(java.lang.String optionalId)
public java.lang.String getDescription()
public void setDescription(java.lang.String description)