Return-Path: Delivered-To: apmail-db-jdo-commits-archive@www.apache.org Received: (qmail 25693 invoked from network); 23 Feb 2011 10:30:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Feb 2011 10:30:22 -0000 Received: (qmail 61773 invoked by uid 500); 23 Feb 2011 10:30:22 -0000 Mailing-List: contact jdo-commits-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jdo-dev@db.apache.org Delivered-To: mailing list jdo-commits@db.apache.org Received: (qmail 61766 invoked by uid 99); 23 Feb 2011 10:30:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Feb 2011 10:30:21 +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; Wed, 23 Feb 2011 10:30:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 675B72388906; Wed, 23 Feb 2011 10:29:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1073677 - /db/jdo/trunk/api/src/java/javax/jdo/annotations/InheritanceStrategy.java Date: Wed, 23 Feb 2011 10:29:55 -0000 To: jdo-commits@db.apache.org From: andyj@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110223102955.675B72388906@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: andyj Date: Wed Feb 23 10:29:55 2011 New Revision: 1073677 URL: http://svn.apache.org/viewvc?rev=1073677&view=rev Log: JDO-674 Add COMPLETE_TABLE enum value Modified: db/jdo/trunk/api/src/java/javax/jdo/annotations/InheritanceStrategy.java Modified: db/jdo/trunk/api/src/java/javax/jdo/annotations/InheritanceStrategy.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/api/src/java/javax/jdo/annotations/InheritanceStrategy.java?rev=1073677&r1=1073676&r2=1073677&view=diff ============================================================================== --- db/jdo/trunk/api/src/java/javax/jdo/annotations/InheritanceStrategy.java (original) +++ db/jdo/trunk/api/src/java/javax/jdo/annotations/InheritanceStrategy.java Wed Feb 23 10:29:55 2011 @@ -19,7 +19,7 @@ package javax.jdo.annotations; /** * Enumeration of the inheritance strategy values. * - * @version 2.1 + * @version 3.1 * @since 2.1 */ public enum InheritanceStrategy @@ -27,5 +27,6 @@ public enum InheritanceStrategy UNSPECIFIED, NEW_TABLE, SUBCLASS_TABLE, - SUPERCLASS_TABLE + SUPERCLASS_TABLE, + COMPLETE_TABLE }