Return-Path: Delivered-To: apmail-db-jdo-commits-archive@www.apache.org Received: (qmail 30795 invoked from network); 26 Jul 2007 17:44:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Jul 2007 17:44:29 -0000 Received: (qmail 35553 invoked by uid 500); 26 Jul 2007 17:44:30 -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 35542 invoked by uid 99); 26 Jul 2007 17:44:30 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jul 2007 10:44:30 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jul 2007 10:44:28 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 3C9E01A981A; Thu, 26 Jul 2007 10:44:08 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r559902 - in /db/jdo/trunk/api2/src/java/javax/jdo/annotations: Element.java Key.java Persistent.java Value.java Date: Thu, 26 Jul 2007 17:44:08 -0000 To: jdo-commits@db.apache.org From: clr@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070726174408.3C9E01A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: clr Date: Thu Jul 26 10:44:07 2007 New Revision: 559902 URL: http://svn.apache.org/viewvc?view=rev&rev=559902 Log: JDO-510 Changed boundTypes to types for @Persistent, @Element, @Key, and @Value Modified: db/jdo/trunk/api2/src/java/javax/jdo/annotations/Element.java db/jdo/trunk/api2/src/java/javax/jdo/annotations/Key.java db/jdo/trunk/api2/src/java/javax/jdo/annotations/Persistent.java db/jdo/trunk/api2/src/java/javax/jdo/annotations/Value.java Modified: db/jdo/trunk/api2/src/java/javax/jdo/annotations/Element.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/api2/src/java/javax/jdo/annotations/Element.java?view=diff&rev=559902&r1=559901&r2=559902 ============================================================================== --- db/jdo/trunk/api2/src/java/javax/jdo/annotations/Element.java (original) +++ db/jdo/trunk/api2/src/java/javax/jdo/annotations/Element.java Thu Jul 26 10:44:07 2007 @@ -39,7 +39,7 @@ * implementation supports multiple types. * @return the types of elements */ - Class[] boundTypes() default {}; + Class[] types() default {}; /** * Whether the element is to be stored serialized (into a join table) Modified: db/jdo/trunk/api2/src/java/javax/jdo/annotations/Key.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/api2/src/java/javax/jdo/annotations/Key.java?view=diff&rev=559902&r1=559901&r2=559902 ============================================================================== --- db/jdo/trunk/api2/src/java/javax/jdo/annotations/Key.java (original) +++ db/jdo/trunk/api2/src/java/javax/jdo/annotations/Key.java Thu Jul 26 10:44:07 2007 @@ -39,7 +39,7 @@ * implementation supports multiple types. * @return the types of keys */ - Class[] boundTypes() default {}; + Class[] types() default {}; /** * Whether the key is to be stored serialized (into a single column of a Modified: db/jdo/trunk/api2/src/java/javax/jdo/annotations/Persistent.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/api2/src/java/javax/jdo/annotations/Persistent.java?view=diff&rev=559902&r1=559901&r2=559902 ============================================================================== --- db/jdo/trunk/api2/src/java/javax/jdo/annotations/Persistent.java (original) +++ db/jdo/trunk/api2/src/java/javax/jdo/annotations/Persistent.java Thu Jul 26 10:44:07 2007 @@ -145,14 +145,14 @@ */ String loadFetchGroup() default ""; - /** Bound types of the member. Used when the declared + /** Types of the member. Used when the declared * member type is a supertype of the actual type that is stored in the * member. For example, the declared member type might be an interface type * that must contain an object of a concrete type when used * for persistence. - * @return the bound types + * @return the types */ - Class[] boundTypes() default {}; + Class[] types() default {}; /** Name of the related member in the other class * where this value is mapped (bidirectional relationship). Modified: db/jdo/trunk/api2/src/java/javax/jdo/annotations/Value.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/api2/src/java/javax/jdo/annotations/Value.java?view=diff&rev=559902&r1=559901&r2=559902 ============================================================================== --- db/jdo/trunk/api2/src/java/javax/jdo/annotations/Value.java (original) +++ db/jdo/trunk/api2/src/java/javax/jdo/annotations/Value.java Thu Jul 26 10:44:07 2007 @@ -38,7 +38,7 @@ * implementation supports multiple types. * @return the types of values */ - Class[] boundTypes() default {}; + Class[] types() default {}; /** * Whether the value is to be stored serialized (into a single column of a