Roll back change that slipped from the User Guide-related changes

This commit is contained in:
Vlad Mihalcea 2016-03-09 14:00:28 +02:00
parent 68af365916
commit cf27164532
1 changed files with 9 additions and 15 deletions

View File

@ -4,22 +4,16 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later. * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/ */
// $Id$
@AnyMetaDefs( @AnyMetaDefs(
@AnyMetaDef( @AnyMetaDef( name= "Property", metaType = "string", idType = "integer",
name = "PropertyMetaDef",
idType = "integer",
metaType = "string",
metaValues = { metaValues = {
@MetaValue( @MetaValue(value = "C", targetEntity = CharProperty.class),
value = "S", @MetaValue(value = "I", targetEntity = IntegerProperty.class),
targetEntity = StringProperty.class @MetaValue(value = "S", targetEntity = StringProperty.class),
), @MetaValue(value = "L", targetEntity = LongProperty.class)
@MetaValue( })
value = "I",
targetEntity = IntegerProperty.class
)
}
)
) )
package org.hibernate.test.annotations.any; package org.hibernate.test.annotations.any;