[Polycasso-commit] SF.net SVN: polycasso:[109] trunk/polycasso/src/com/mebigfatguy/polycasso/ About
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-11-29 02:54:18
|
Revision: 109
http://polycasso.svn.sourceforge.net/polycasso/?rev=109&view=rev
Author: dbrosius
Date: 2009-11-29 02:54:09 +0000 (Sun, 29 Nov 2009)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/polycasso/src/com/mebigfatguy/polycasso/AboutDialog.java
Modified: trunk/polycasso/src/com/mebigfatguy/polycasso/AboutDialog.java
===================================================================
--- trunk/polycasso/src/com/mebigfatguy/polycasso/AboutDialog.java 2009-11-29 02:48:59 UTC (rev 108)
+++ trunk/polycasso/src/com/mebigfatguy/polycasso/AboutDialog.java 2009-11-29 02:54:09 UTC (rev 109)
@@ -28,16 +28,25 @@
import javax.swing.JPanel;
import javax.swing.JTextArea;
+/**
+ * a simple dialog thats typical application about box information
+ */
public class AboutDialog extends JDialog {
private static final long serialVersionUID = -686787510942505991L;
+ /**
+ * creates the dialog
+ */
public AboutDialog() {
setTitle(PolycassoBundle.getString(PolycassoBundle.Key.AboutPolycasso));
initComponents();
pack();
}
+ /**
+ * initializes the components and lays them out
+ */
private void initComponents() {
Container cp = getContentPane();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|