Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 29766 invoked from network); 9 Jun 2010 15:13:49 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 9 Jun 2010 15:13:49 -0000 Received: (qmail 4627 invoked by uid 500); 9 Jun 2010 15:13:48 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 4571 invoked by uid 500); 9 Jun 2010 15:13:48 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 4564 invoked by uid 99); 9 Jun 2010 15:13:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jun 2010 15:13:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jun 2010 15:13:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6EB1923889CB; Wed, 9 Jun 2010 15:12:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r953038 - /commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ Date: Wed, 09 Jun 2010 15:12:55 -0000 To: commits@commons.apache.org From: guixl@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100609151257.6EB1923889CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: guixl Date: Wed Jun 9 15:12:51 2010 New Revision: 953038 URL: http://svn.apache.org/viewvc?rev=953038&view=rev Log: remove unnecessary @author tag and unnecessary source code Removed: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ExportProgressMonitor.java Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ModelingDocumentExportWizard.java commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlDocumentExportMenu.java commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlExportStreamHandlerAction.java Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ModelingDocumentExportWizard.java URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ModelingDocumentExportWizard.java?rev=953038&r1=953037&r2=953038&view=diff ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ModelingDocumentExportWizard.java (original) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ModelingDocumentExportWizard.java Wed Jun 9 15:12:51 2010 @@ -49,8 +49,7 @@ import org.eclipse.ui.dialogs.WizardNewF /** * Scxml document export wizard - * - * @author Gui Xun Long (guixl@apache.org) + * */ public class ModelingDocumentExportWizard extends Wizard { @@ -227,21 +226,6 @@ public class ModelingDocumentExportWizar } catch (CoreException e) { e.printStackTrace(); } - - /*// ¿ªÊ¼´¦Àí½ø¶È£¬Èç¹ûindeterminateΪfalse,Õû¸ö½ø¶ÈΪTOTAL_TIME = 10000 - // ·ñÔò£¬½ø¶ÈÌõΪ×Ô¶¯Ôö¼ÓµÄ - for (int total = 0; total < TOTAL_TIME && !monitor.isCanceled(); total += INCREMENT) { - Thread.sleep(INCREMENT); - monitor.worked(INCREMENT); - // µ½´ïÒ»°ëµÄʱ¼äÏÔʾÏàÓ¦µÄÐÅÏ¢ - if (total == TOTAL_TIME / 2) - monitor.subTask("Doing second half"); - } - // Íê³ÉÈÎÎñ - monitor.done(); - if (monitor.isCanceled()) - throw new InterruptedException( - "The long running operation was cancelled");*/ } } Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlDocumentExportMenu.java URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlDocumentExportMenu.java?rev=953038&r1=953037&r2=953038&view=diff ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlDocumentExportMenu.java (original) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlDocumentExportMenu.java Wed Jun 9 15:12:51 2010 @@ -40,7 +40,6 @@ import org.eclipse.ui.IWorkbenchPart; /** * Scxml document export wizard - * @author Gui Xun Long (guixl@apache.org) */ public class ScxmlDocumentExportMenu implements IObjectActionDelegate{ /** Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlExportStreamHandlerAction.java URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlExportStreamHandlerAction.java?rev=953038&r1=953037&r2=953038&view=diff ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlExportStreamHandlerAction.java (original) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/main/java/org.apache.commons.scxml.modeling.diagram/src/org/apache/commons/scxml/modeling/export/ScxmlExportStreamHandlerAction.java Wed Jun 9 15:12:51 2010 @@ -47,7 +47,6 @@ import org.xml.sax.SAXException; /** * Scxml document export wizard * - * @author Gui Xun Long (guixl@apache.org) */ public class ScxmlExportStreamHandlerAction { private InputStream input;