本文整理汇总了Java中org.hibernate.property.PropertyAccessor类的典型用法代码示例。如果您正苦于以下问题:Java PropertyAccessor类的具体用法?Java PropertyAccessor怎么用?Java PropertyAccessor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PropertyAccessor类属于org.hibernate.property包,在下文中一共展示了PropertyAccessor类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initialize
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private void initialize(String[] aliases) {
PropertyAccessor propertyAccessor = new ChainedPropertyAccessor(
new PropertyAccessor[] {
PropertyAccessorFactory.getPropertyAccessor( resultClass, null ),
PropertyAccessorFactory.getPropertyAccessor( "field" )
}
);
this.aliases = new String[ aliases.length ];
setters = new Setter[ aliases.length ];
for ( int i = 0; i < aliases.length; i++ ) {
String alias = aliases[ i ];
if ( alias != null ) {
this.aliases[ i ] = alias;
setters[ i ] = propertyAccessor.getSetter( resultClass, alias );
}
}
isInitialized = true;
}
示例2: buildPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private PropertyAccessor buildPropertyAccessor(Property mappedProperty) {
if ( mappedProperty.isBackRef() ) {
return mappedProperty.getPropertyAccessor(null);
}
else {
return PropertyAccessorFactory.getDynamicMapPropertyAccessor();
}
}
示例3: getPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private PropertyAccessor getPropertyAccessor(AttributeBinding mappedProperty) throws MappingException {
// TODO: Fix this then backrefs are working in new metamodel
return PropertyAccessorFactory.getPropertyAccessor(
mappedProperty.getContainer().getClassReference(),
mappedProperty.getPropertyAccessorName()
);
}
示例4: PojoComponentTuplizer
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
public PojoComponentTuplizer(Component component) {
super( component );
this.componentClass = component.getComponentClass();
String[] getterNames = new String[propertySpan];
String[] setterNames = new String[propertySpan];
Class[] propTypes = new Class[propertySpan];
for ( int i = 0; i < propertySpan; i++ ) {
getterNames[i] = getters[i].getMethodName();
setterNames[i] = setters[i].getMethodName();
propTypes[i] = getters[i].getReturnType();
}
final String parentPropertyName = component.getParentProperty();
if ( parentPropertyName == null ) {
parentSetter = null;
parentGetter = null;
}
else {
PropertyAccessor pa = PropertyAccessorFactory.getPropertyAccessor( null );
parentSetter = pa.getSetter( componentClass, parentPropertyName );
parentGetter = pa.getGetter( componentClass, parentPropertyName );
}
if ( hasCustomAccessors || !Environment.useReflectionOptimizer() ) {
optimizer = null;
}
else {
// TODO: here is why we need to make bytecode provider global :(
// TODO : again, fix this after HHH-1907 is complete
optimizer = Environment.getBytecodeProvider().getReflectionOptimizer(
componentClass, getterNames, setterNames, propTypes
);
}
}
示例5: getGetter
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private static Getter getGetter(Property mappingProperty) {
if ( mappingProperty == null || !mappingProperty.getPersistentClass().hasPojoRepresentation() ) {
return null;
}
PropertyAccessor pa = PropertyAccessorFactory.getPropertyAccessor( mappingProperty, EntityMode.POJO );
return pa.getGetter( mappingProperty.getPersistentClass().getMappedClass(), mappingProperty.getName() );
}
示例6: buildPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private PropertyAccessor buildPropertyAccessor(Property mappedProperty) {
if ( mappedProperty.isBackRef() ) {
return mappedProperty.getPropertyAccessor(null);
}
else {
return PropertyAccessorFactory.getDom4jPropertyAccessor(
mappedProperty.getNodeName(),
mappedProperty.getType(),
getEntityMetamodel().getSessionFactory()
);
}
}
示例7: buildPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
/**
* return accessors
* @param mappedProperty
* @return
*/
private PropertyAccessor buildPropertyAccessor(Property mappedProperty) {
if ( mappedProperty.isBackRef() ) {
PropertyAccessor ac = mappedProperty.getPropertyAccessor(null);
if(ac!=null) return ac;
}
return accessor;
}
示例8: initialize
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private void initialize(String[] newAlias) {
PropertyAccessor propertyAccessor = new ChainedPropertyAccessor(
new PropertyAccessor[] {
PropertyAccessorFactory.getPropertyAccessor(
resultClass, null),
PropertyAccessorFactory.getPropertyAccessor("field") });
this.aliases = new String[newAlias.length];
setters = new Setter[newAlias.length];
for (int i = 0; i < newAlias.length; i++) {
String alias = newAlias[i];
if (alias != null) {
this.aliases[i] = alias;
// Diferencia con AliasToBeanResultTransformer
if (alias.indexOf('.') > 0) {
// found nested
setters[i] = new NestedSetter(resultClass, alias);
} else {
// -------------------------------------------
setters[i] = propertyAccessor.getSetter(resultClass, alias);
// Diferencia con AliasToBeanResultTransformer
}
// -------------------------------------------
}
}
isInitialized = true;
}
示例9: IgnoringCaseAliasToBeanResultTransformer
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
@SuppressWarnings("rawtypes")
public IgnoringCaseAliasToBeanResultTransformer(final Class resultClass) {
if (resultClass == null) {
throw new IllegalArgumentException("resultClass cannot be null");
}
this.resultClass = resultClass;
propertyAccessor = new ChainedPropertyAccessor(new PropertyAccessor[] {
PropertyAccessorFactory.getPropertyAccessor(resultClass, null),
PropertyAccessorFactory.getPropertyAccessor("field") });
fields = this.resultClass.getDeclaredFields();
}
开发者ID:SmarterApp,项目名称:TechnologyReadinessTool,代码行数:12,代码来源:IgnoringCaseAliasToBeanResultTransformer.java
示例10: getPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
@Override
public PropertyAccessor getPropertyAccessor(Class clazz) {
return new BackrefPropertyAccessor(collectionRole, entityName);
}
示例11: getPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
@Override
public PropertyAccessor getPropertyAccessor(Class clazz) {
return new IndexPropertyAccessor(collectionRole, entityName);
}
示例12: getPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
public PropertyAccessor getPropertyAccessor(Class clazz) throws MappingException {
return PropertyAccessorFactory.getPropertyAccessor( clazz, getPropertyAccessorName() );
}
示例13: buildPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
private PropertyAccessor buildPropertyAccessor(Property property) {
return PropertyAccessorFactory.getDynamicMapPropertyAccessor();
}
示例14: getPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
public PropertyAccessor getPropertyAccessor(Class clazz) {
return new BackrefPropertyAccessor(collectionRole, entityName);
}
示例15: getPropertyAccessor
import org.hibernate.property.PropertyAccessor; //导入依赖的package包/类
public PropertyAccessor getPropertyAccessor(Class clazz) {
return new IndexPropertyAccessor(collectionRole, entityName);
}