📄 joinedsubclassfksecondpass.java
字号:
//$Id$package org.hibernate.cfg;import java.util.Map;import org.hibernate.MappingException;import org.hibernate.cfg.annotations.TableBinder;import org.hibernate.mapping.JoinedSubclass;import org.hibernate.mapping.SimpleValue;/** * @author Emmanuel Bernard */public class JoinedSubclassFkSecondPass extends FkSecondPass { private JoinedSubclass entity; private ExtendedMappings mappings; public JoinedSubclassFkSecondPass(JoinedSubclass entity, Ejb3JoinColumn[] inheritanceJoinedColumns, SimpleValue key, ExtendedMappings mappings) { super( key, inheritanceJoinedColumns ); this.entity = entity; this.mappings = mappings; } public String getReferencedEntityName() { return entity.getSuperclass().getEntityName(); } public boolean isInPrimaryKey() { return true; } public void doSecondPass(Map persistentClasses) throws MappingException { TableBinder.bindFk( entity.getSuperclass(), entity, columns, value, false, mappings ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -