package-info.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 35 行

JAVA
35
字号
/** * Test package for metatata facilities * It contains an example of filter metadata */@FilterDefs(		{		@FilterDef(				name = "betweenLength",				defaultCondition = ":minLength <= length and :maxLength >= length",				parameters = {				@ParamDef(name = "minLength", type = "integer"),				@ParamDef(name = "maxLength", type = "integer")						}		)				})@TypeDefs(		{		@TypeDef(				name = "caster",				typeClass = CasterStringType.class,				parameters = {				@Parameter(name = "cast", value = "lower")						}		)				}) package org.hibernate.test.annotations.entity;import org.hibernate.annotations.FilterDef;import org.hibernate.annotations.FilterDefs;import org.hibernate.annotations.ParamDef;import org.hibernate.annotations.Parameter;import org.hibernate.annotations.TypeDef;import org.hibernate.annotations.TypeDefs;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?