当前位置: 首页>>代码示例>>Java>>正文


Java Set类代码示例

本文整理汇总了Java中org.hibernate.mapping.Set的典型用法代码示例。如果您正苦于以下问题:Java Set类的具体用法?Java Set怎么用?Java Set使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Set类属于org.hibernate.mapping包,在下文中一共展示了Set类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testProperCallbacks

import org.hibernate.mapping.Set; //导入依赖的package包/类
public void testProperCallbacks() {

		ValueVisitor vv = new ValueVisitorValidator();
		
		new Any(new Table()).accept(vv);
		new Array(new RootClass()).accept(vv);
		new Bag(new RootClass()).accept(vv);
		new Component(new RootClass()).accept(vv);
		new DependantValue(null,null).accept(vv);
		new IdentifierBag(null).accept(vv);
		new List(null).accept(vv);
		new ManyToOne(null).accept(vv);
		new Map(null).accept(vv);
		new OneToMany(null).accept(vv);
		new OneToOne(null, new RootClass() ).accept(vv);
		new PrimitiveArray(null).accept(vv);
		new Set(null).accept(vv);
		new SimpleValue().accept(vv);
	
		
	}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:22,代码来源:ValueVisitorTest.java

示例2: getNestedInnerComponentNames

import org.hibernate.mapping.Set; //导入依赖的package包/类
public List<String> getNestedInnerComponentNames(String parentClassname, String topLevelComponentName,
    String nestedComponentName, String innerComponentNamePrefix) {
    List<String> names = new ArrayList<String>();
    PersistentClass parent = configuration.getClassMapping(parentClassname);
    Property topLevelProperty = parent.getProperty(topLevelComponentName);
    Component topLevelComponent = (Component) topLevelProperty.getValue();
    Property nestedProperty = topLevelComponent.getProperty(nestedComponentName);
    Set nestedSet = (Set) nestedProperty.getValue();
    Component nestedComponent = (Component) nestedSet.getElement();
    Iterator<?> propertyIter = nestedComponent.getPropertyIterator();
    while (propertyIter.hasNext()) {
        Property prop = (Property) propertyIter.next();
        if (prop.getName().startsWith(innerComponentNamePrefix)) {
            names.add(prop.getName());
        }
    }
    return names;
}
 
开发者ID:NCIP,项目名称:cagrid-core,代码行数:19,代码来源:HibernateConfigTypesInformationResolver.java

示例3: create

import org.hibernate.mapping.Set; //导入依赖的package包/类
public Collection create(Element node, String path, PersistentClass owner,
		Mappings mappings, java.util.Map inheritedMetas) throws MappingException {
	Set set = new Set( mappings, owner );
	bindCollection( node, set, owner.getEntityName(), path, mappings, inheritedMetas );
	return set;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:7,代码来源:HbmBinder.java

示例4: create

import org.hibernate.mapping.Set; //导入依赖的package包/类
public Collection create(Element node, String path, PersistentClass owner,
		Mappings mappings, java.util.Map inheritedMetas) throws MappingException {
	Set set = new Set( owner );
	bindCollection( node, set, owner.getEntityName(), path, mappings, inheritedMetas );
	return set;
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:7,代码来源:HbmBinder.java

示例5: accept

import org.hibernate.mapping.Set; //导入依赖的package包/类
public Object accept(Set set) {
	return validate(Set.class, set);
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:4,代码来源:ValueVisitorTest.java


注:本文中的org.hibernate.mapping.Set类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。