Revision: 174
http://patchanim.svn.sourceforge.net/patchanim/?rev=174&view=rev
Author: dbrosius
Date: 2008-02-11 21:03:39 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java 2008-02-12 05:01:11 UTC (rev 173)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java 2008-02-12 05:03:39 UTC (rev 174)
@@ -31,14 +31,23 @@
import com.mebigfatguy.patchanim.gui.events.ExportListener;
import com.mebigfatguy.patchanim.main.PatchAnimBundle;
+/**
+ * a progress dialog for exporting images
+ */
public class ExportFrame extends JDialog implements ExportListener {
private static final long serialVersionUID = 3111097499092146056L;
private JProgressBar bar;
+ /**
+ * constructs the export progress dialog
+ */
public ExportFrame() {
initComponents();
}
+ /**
+ * initialize the gui components
+ */
private void initComponents() {
ResourceBundle rb = PatchAnimBundle.getBundle();
Container cp = getContentPane();
@@ -50,6 +59,11 @@
setTitle(rb.getString(PatchAnimBundle.EXPORTINGFILE));
}
+ /**
+ * implements the ExportListener to update the progress bar
+ *
+ * @param ee the export event describing what file number is being exported
+ */
public void imageExported(final ExportEvent ee) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|