elementpropertymapping.java
来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 46 行
JAVA
46 行
package net.sf.hibernate.collection;
import net.sf.hibernate.MappingException;
import net.sf.hibernate.QueryException;
import net.sf.hibernate.persister.PropertyMapping;
import net.sf.hibernate.type.Type;
import net.sf.hibernate.util.StringHelper;
/**
* @author Gavin King
*/
public class ElementPropertyMapping implements PropertyMapping {
private final String[] elementColumns;
private final Type type;
public ElementPropertyMapping(String[] elementColumns, Type type)
throws MappingException {
this.elementColumns = elementColumns;
this.type = type;
}
public Type toType(String propertyName) throws QueryException {
if (propertyName==null || "id".equals(propertyName) ) {
return type;
}
else {
throw new QueryException("cannot dereference scalar collection element: " + propertyName);
}
}
public String[] toColumns(String alias, String propertyName) throws QueryException {
if (propertyName==null || "id".equals(propertyName) ) {
return StringHelper.qualify(alias, elementColumns);
}
else {
throw new QueryException("cannot dereference scalar collection element: " + propertyName);
}
}
public Type getType() {
return type;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?