summaryrefslogtreecommitdiff
path: root/src/com/delwink/icebox/swing/ReportResultsDialog.java
diff options
context:
space:
mode:
authorDavid McMackins II <contact@mcmackins.org>2016-12-01 08:39:23 -0600
committerDavid McMackins II <contact@mcmackins.org>2016-12-01 08:39:23 -0600
commitd6af34bb7a737ecc3b4c4cca30e2df2bde07841d (patch)
treedb679c4c77aea876d062f611ae5116e21ddd2992 /src/com/delwink/icebox/swing/ReportResultsDialog.java
parent836ab01b6f372b35aecec4e17656a2232388783a (diff)
Add doc commentsHEADmaster
Diffstat (limited to 'src/com/delwink/icebox/swing/ReportResultsDialog.java')
-rw-r--r--src/com/delwink/icebox/swing/ReportResultsDialog.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/com/delwink/icebox/swing/ReportResultsDialog.java b/src/com/delwink/icebox/swing/ReportResultsDialog.java
index 6bdd83f..fefa2b1 100644
--- a/src/com/delwink/icebox/swing/ReportResultsDialog.java
+++ b/src/com/delwink/icebox/swing/ReportResultsDialog.java
@@ -38,10 +38,21 @@ public class ReportResultsDialog extends JDialog {
private final JButton OK_BUTTON;
private final JTable TABLE;
+ /**
+ * Creates a new results dialog.
+ * @param parent The parent frame of this dialog.
+ * @param model The table model to be used for the results.
+ */
public ReportResultsDialog(Frame parent, Model model) {
this(parent, Lang.get("Report.results"), model);
}
+ /**
+ * Creates a new results dialog with a custom window title.
+ * @param parent The parent frame of this dialog.
+ * @param title The title of the dialog window.
+ * @param model The table model to be used for the results.
+ */
public ReportResultsDialog(Frame parent, String title, Model model) {
super(parent, title);
setDefaultCloseOperation(DISPOSE_ON_CLOSE);