joinedsubclassfksecondpass.java
来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 36 行
JAVA
36 行
//$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 + =
减小字号Ctrl + -
显示快捷键?