From 5acda36d4f64beae66e11c9305793bae9884ca9b Mon Sep 17 00:00:00 2001 From: hneemann Date: Tue, 25 Oct 2016 21:15:56 +0200 Subject: [PATCH] added some documentation --- .../de/neemann/digital/gui/components/AttributeDialog.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/de/neemann/digital/gui/components/AttributeDialog.java b/src/main/java/de/neemann/digital/gui/components/AttributeDialog.java index 88a08ea59..d8011f2a1 100644 --- a/src/main/java/de/neemann/digital/gui/components/AttributeDialog.java +++ b/src/main/java/de/neemann/digital/gui/components/AttributeDialog.java @@ -13,6 +13,13 @@ import java.awt.event.ActionEvent; import java.util.ArrayList; /** + * Dialog used to edit Attributes. + * The Dialog is configured by a list of {@link Key} instances, which are defined in the + * {@link de.neemann.digital.core.element.Keys} class. The values are stored in an instance of + * {@link ElementAttributes} which is a mostly a observable hash map. + * This class is used to create the dialogs used to edit the element attributes but also to edit the + * system settings, the model settings and the models attributes, + * * @author hneemann */ public class AttributeDialog extends JDialog {