Return-Path: X-Original-To: apmail-db-derby-commits-archive@www.apache.org Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ECDCBEEF3 for ; Fri, 1 Feb 2013 04:18:40 +0000 (UTC) Received: (qmail 33727 invoked by uid 500); 1 Feb 2013 04:18:40 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 33610 invoked by uid 500); 1 Feb 2013 04:18:37 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 33546 invoked by uid 99); 1 Feb 2013 04:18:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Feb 2013 04:18:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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, 01 Feb 2013 04:18:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id EF90523888CD; Fri, 1 Feb 2013 04:18:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1441313 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeTrajectoryTest.java Date: Fri, 01 Feb 2013 04:18:12 -0000 To: derby-commits@db.apache.org From: dag@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130201041812.EF90523888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dag Date: Fri Feb 1 04:18:12 2013 New Revision: 1441313 URL: http://svn.apache.org/viewvc?rev=1441313&view=rev Log: DERBY-6060 Fix Javadoc for UpgradeTrajectoryTest dangling reference Patch derby-6060, class javadoc fixes. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeTrajectoryTest.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeTrajectoryTest.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeTrajectoryTest.java?rev=1441313&r1=1441312&r2=1441313&view=diff ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeTrajectoryTest.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeTrajectoryTest.java Fri Feb 1 04:18:12 2013 @@ -62,11 +62,14 @@ import org.apache.derbyTesting.junit.Tes * trajectories which begin with some release, then upgrade through all * intermediate releases to the highest release in the original collection of * all releases. A set of N releases gives rise to N-1 minimal trajectories. - *
  • Otherwise, if the system property derbyTesting.allTrajectories is set to true, builds the set of all upgrade trajectories possible on that collection of - * releases. An upgrade trajectory is a sorted subset of those releases. Each - * subset is sorted in ascending release order. We exclude the vacuous empty - * subset and the uninteresting singleton subsets. A set of N releases - * gives rise to ((2**N) - N) - 1 hard-upgrade trajectories.
  • + * + *
  • Otherwise, if the system property {@code derbyTesting.allTrajectories} + * is set to true, builds the set of all upgrade trajectories possible on + * that collection of releases. An upgrade trajectory is a sorted subset of + * those releases. Each subset is sorted in ascending release order. We + * exclude the vacuous empty subset and the uninteresting singleton + * subsets. A set of N releases gives rise to ((2**N) - N) - 1 hard-upgrade + * trajectories.
  • * * *
  • For each trajectory, we create two databases: @@ -91,10 +94,11 @@ import org.apache.derbyTesting.junit.Tes *

    * *

    - * By default we consider all trajectories possible on the collection of - * releases listed in _Suite. If you want to consider a different collection of - * releases, you can override the _Suite collection by setting the system - * property "derbyTesting.oldVersionsPath". Here, for instance, is the command + * By default we consider all trajectories possible on the collection + * of releases listed in {@link OldVersions}. If you want to consider + * a different collection of releases, you can override the {@code + * OldVersions} collection by setting the system property {@code + * "derbyTesting.oldVersionsPath"}. Here, for instance, is the command * line to run this test against a customized list of releases: *

    * @@ -131,7 +135,7 @@ import org.apache.derbyTesting.junit.Tes * *

    * If you need to test a particular trajectory, you can hand-edit - * makeSampleTrajectories() and uncomment the call to it. + * {@code makeSampleTrajectories()} and uncomment the call to it. *

    * */