diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-29 20:30:46 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-29 20:30:46 +0000 |
| commit | df1dbe48b99a5c86345a58d6da5727cb39547727 (patch) | |
| tree | 6f3a83225f47592e94b1a1ba9953707f348ad21f /sources/utils/VSInfoArea.java | |
| parent | a4d12944746dcb4f9d1140dfd52c7d58b930c17d (diff) | |
new package documented.
Diffstat (limited to 'sources/utils/VSInfoArea.java')
| -rw-r--r-- | sources/utils/VSInfoArea.java | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sources/utils/VSInfoArea.java b/sources/utils/VSInfoArea.java index f6b4499..1652f04 100644 --- a/sources/utils/VSInfoArea.java +++ b/sources/utils/VSInfoArea.java @@ -8,24 +8,27 @@ import java.awt.*; import javax.swing.*; import javax.swing.border.*; -// TODO: Auto-generated Javadoc /** - * The Class VSInfoArea. + * The Class VSInfoArea. An object of this class is used for some information + *areas. E.g. in the VSAbout class. + * + * @author Paul C. Buetow */ public class VSInfoArea extends JTextPane { + /** The serial version uid */ private static final long serialVersionUID = 1L; /** - * Instantiates a new lang.process.removeinfo area. + * Instantiates a new VSInfoArea. */ public VSInfoArea() { init(); } /** - * Instantiates a new lang.process.removeinfo area. + * Instantiates a new VSInfoArea. * - * @param text the text + * @param text the text to display */ public VSInfoArea(String text) { setText(text); @@ -33,7 +36,7 @@ public class VSInfoArea extends JTextPane { } /** - * Inits the. + * Inits the info area. */ private void init() { setOpaque(false); |
