summaryrefslogtreecommitdiff
path: root/src/com/delwink/icebox/swing/QuantityUpdateDialog.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/delwink/icebox/swing/QuantityUpdateDialog.java')
-rw-r--r--src/com/delwink/icebox/swing/QuantityUpdateDialog.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/delwink/icebox/swing/QuantityUpdateDialog.java b/src/com/delwink/icebox/swing/QuantityUpdateDialog.java
index 1193eff..a66b2f6 100644
--- a/src/com/delwink/icebox/swing/QuantityUpdateDialog.java
+++ b/src/com/delwink/icebox/swing/QuantityUpdateDialog.java
@@ -54,6 +54,11 @@ public class QuantityUpdateDialog extends JDialog {
private final JTable TABLE;
private final QuantityUpdate UPDATE;
+ /**
+ * Creates a new quantity update for editing.
+ * @param parent The parent frame of this dialog.
+ * @param inventory The inventory to which this update will apply.
+ */
public QuantityUpdateDialog(Frame parent, Inventory inventory) {
super(parent, Lang.get("QuantityUpdate.title"));
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
@@ -134,5 +139,4 @@ public class QuantityUpdateDialog extends JDialog {
pack();
centorOnParent();
}
-
}