Uses of Interface
com.rapidtransform.core.model.Relation

Packages that use Relation
com.rapidtransform.core.dao   
com.rapidtransform.core.dao.hibernate   
com.rapidtransform.core.model   
com.rapidtransform.core.service   
com.rapidtransform.core.service.impl   
com.rapidtransform.doc.service   
com.rapidtransform.part.model   
com.rapidtransform.part.service.impl   
com.rapidtransform.product.model   
com.rapidtransform.product.service.impl   
com.rapidtransform.spec.service   
 

Uses of Relation in com.rapidtransform.core.dao
 

Methods in com.rapidtransform.core.dao that return Relation
 Relation RelationDAO.save(Relation relation)
           
 

Methods in com.rapidtransform.core.dao with parameters of type Relation
 Relation RelationDAO.save(Relation relation)
           
 

Uses of Relation in com.rapidtransform.core.dao.hibernate
 

Methods in com.rapidtransform.core.dao.hibernate that return Relation
 Relation MetaRelationDAOHibernate.save(Relation relation)
           
 

Methods in com.rapidtransform.core.dao.hibernate with parameters of type Relation
 Relation MetaRelationDAOHibernate.save(Relation relation)
           
 

Uses of Relation in com.rapidtransform.core.model
 

Classes in com.rapidtransform.core.model that implement Relation
 class BaseRelation<SourceType extends Model,TargetType extends Model>
           
 

Uses of Relation in com.rapidtransform.core.service
 

Methods in com.rapidtransform.core.service that return Relation
 Relation MetaCRUDService.createRelation(Type source, Model target, QName relationType)
          Creates a relation with the given type between the source and target models.
 

Uses of Relation in com.rapidtransform.core.service.impl
 

Methods in com.rapidtransform.core.service.impl that return Relation
 Relation MetaCRUDServiceImpl.createRelation(Type source, Model target, QName relationType)
          Creates a relation with the given type between the source and target models.
 

Uses of Relation in com.rapidtransform.doc.service
 

Methods in com.rapidtransform.doc.service that return Relation
 Relation<DocumentedType,Document> DocumentedService.addDocument(Documented source, Document target, java.lang.String relationType)
           
 

Uses of Relation in com.rapidtransform.part.model
 

Methods in com.rapidtransform.part.model that return types with arguments of type Relation
 java.util.Set<Relation> ItemVersion.getDocuments()
           
 java.util.Set<Relation> ItemVersion.getSpecs()
           
 

Method parameters in com.rapidtransform.part.model with type arguments of type Relation
 void ItemVersion.setDocuments(java.util.Set<Relation> documents)
           
 void ItemVersion.setSpecs(java.util.Set<Relation> specs)
           
 

Uses of Relation in com.rapidtransform.part.service.impl
 

Methods in com.rapidtransform.part.service.impl that return Relation
 Relation<ItemVersion,Document> ItemServiceImpl.addDocument(Documented source, Document target, java.lang.String relationType)
           
 Relation<ItemVersion,Specification> ItemServiceImpl.addSpecification(Specified source, Specification target, java.lang.String relationType)
           
 

Uses of Relation in com.rapidtransform.product.model
 

Methods in com.rapidtransform.product.model that return types with arguments of type Relation
 java.util.Set<Relation> Product.getDocuments()
           
 java.util.Set<Relation> Product.getSpecs()
           
 

Method parameters in com.rapidtransform.product.model with type arguments of type Relation
 void Product.setDocuments(java.util.Set<Relation> documents)
           
 void Product.setSpecs(java.util.Set<Relation> specs)
           
 

Uses of Relation in com.rapidtransform.product.service.impl
 

Methods in com.rapidtransform.product.service.impl that return Relation
 Relation<Product,Document> ProductServiceImpl.addDocument(Documented source, Document target, java.lang.String relationType)
           
 Relation<Product,Specification> ProductServiceImpl.addSpecification(Specified source, Specification target, java.lang.String relationType)
           
 

Uses of Relation in com.rapidtransform.spec.service
 

Methods in com.rapidtransform.spec.service that return Relation
 Relation<SpecifiedType,Specification> SpecifiedService.addSpecification(Specified source, Specification target, java.lang.String relationType)