Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 91164 invoked from network); 2 Oct 2009 11:44:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Oct 2009 11:44:01 -0000 Received: (qmail 82868 invoked by uid 500); 2 Oct 2009 11:44:01 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 82831 invoked by uid 500); 2 Oct 2009 11:44:01 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 82822 invoked by uid 99); 2 Oct 2009 11:44:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 11:44:01 +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; Fri, 02 Oct 2009 11:43:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A0B0323888DB; Fri, 2 Oct 2009 11:43:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r820976 - /harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/spi/SyncFactory.java Date: Fri, 02 Oct 2009 11:43:37 -0000 To: commits@harmony.apache.org From: tellison@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091002114337.A0B0323888DB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tellison Date: Fri Oct 2 11:43:37 2009 New Revision: 820976 URL: http://svn.apache.org/viewvc?rev=820976&view=rev Log: Mark property names as final, and add javadoc. Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/spi/SyncFactory.java Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/spi/SyncFactory.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/spi/SyncFactory.java?rev=820976&r1=820975&r2=820976&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/spi/SyncFactory.java (original) +++ harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/spi/SyncFactory.java Fri Oct 2 11:43:37 2009 @@ -40,11 +40,20 @@ * Applications can also use it to add and remove SyncProviders at runtime. */ public class SyncFactory { - public static String ROWSET_SYNC_PROVIDER = "rowset.provider.classname"; //$NON-NLS-1$ + /** + * The property name for the synchronization provider's implementation class. + */ + public static final String ROWSET_SYNC_PROVIDER = "rowset.provider.classname"; //$NON-NLS-1$ - public static String ROWSET_SYNC_VENDOR = "rowset.provider.vendor"; //$NON-NLS-1$ + /** + * The property name for the synchronization provider's vendor name. + */ + public static final String ROWSET_SYNC_VENDOR = "rowset.provider.vendor"; //$NON-NLS-1$ - public static String ROWSET_SYNC_PROVIDER_VERSION = "rowset.provider.version"; //$NON-NLS-1$ + /** + * The property name for the synchronization provider's version information. + */ + public static final String ROWSET_SYNC_PROVIDER_VERSION = "rowset.provider.version"; //$NON-NLS-1$ private static SyncFactory instance = new SyncFactory();