summaryrefslogtreecommitdiff
path: root/sources/utils/VSInfoArea.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-25 08:10:13 +0000
committerPaul Buetow <paul@buetow.org>2008-05-25 08:10:13 +0000
commitc015d586d22b69078b6da61858e5675793856b0b (patch)
treeefbc9881cf59363abef52a0beb5eedf9e81a224a /sources/utils/VSInfoArea.java
parent62fe28f0b0b0c9ebde18a6dc33907889ff3aa21b (diff)
JAutoDoc :)
Diffstat (limited to 'sources/utils/VSInfoArea.java')
-rw-r--r--sources/utils/VSInfoArea.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/sources/utils/VSInfoArea.java b/sources/utils/VSInfoArea.java
index c1afd42..241b8f8 100644
--- a/sources/utils/VSInfoArea.java
+++ b/sources/utils/VSInfoArea.java
@@ -1,19 +1,39 @@
+/*
+ * VS is (c) 2008 by Paul C. Buetow
+ * vs@dev.buetow.org
+ */
package utils;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
+// TODO: Auto-generated Javadoc
+/**
+ * The Class VSInfoArea.
+ */
public class VSInfoArea extends JTextPane {
+
+ /**
+ * Instantiates a new vS info area.
+ */
public VSInfoArea() {
init();
}
+ /**
+ * Instantiates a new vS info area.
+ *
+ * @param text the text
+ */
public VSInfoArea(String text) {
setText(text);
init();
}
+ /**
+ * Inits the.
+ */
private void init() {
setOpaque(false);
setBorder(null);