public StandardProperty(String name, String node, org.hibernate.type.Type type, boolean lazy, boolean insertable, boolean updateable, boolean insertGenerated, boolean updateGenerated, boolean nullable, boolean checkable, boolean versionable, org.hibernate.engine.CascadeStyle cascadeStyle, org.hibernate.FetchMode fetchMode)Constructs StandardProperty instances.
super(name, node, type);
this.lazy = lazy;
this.insertable = insertable;
this.updateable = updateable;
this.insertGenerated = insertGenerated;
this.updateGenerated = updateGenerated;
this.nullable = nullable;
this.dirtyCheckable = checkable;
this.versionable = versionable;
this.cascadeStyle = cascadeStyle;
this.fetchMode = fetchMode;
|