Dali Provisional API
Release 3.2

Uses of Interface
org.eclipse.jpt.jpa.core.context.PersistentType

Packages that use PersistentType
org.eclipse.jpt.jpa.core   
org.eclipse.jpt.jpa.core.context   
org.eclipse.jpt.jpa.core.context.java   
org.eclipse.jpt.jpa.core.context.orm   
org.eclipse.jpt.jpa.core.context.persistence   
org.eclipse.jpt.jpa.core.jpa2.context   
org.eclipse.jpt.jpa.core.jpql.spi   
org.eclipse.jpt.jpa.eclipselink.core.context.orm   
org.eclipse.jpt.jpa.eclipselink.core.context.persistence   
org.eclipse.jpt.jpa.ui   
 

Uses of PersistentType in org.eclipse.jpt.jpa.core
 

Methods in org.eclipse.jpt.jpa.core with parameters of type PersistentType
 JavaPersistentAttribute JpaFactory.buildJavaPersistentAttribute(PersistentType parent, Accessor accessor)
           
 JavaPersistentAttribute JpaFactory.buildJavaPersistentField(PersistentType parent, JavaResourceField resourceField)
           
 JavaPersistentAttribute JpaFactory.buildJavaPersistentProperty(PersistentType parent, JavaResourceMethod resourceGetter, JavaResourceMethod resourceSetter)
           
 

Uses of PersistentType in org.eclipse.jpt.jpa.core.context
 

Fields in org.eclipse.jpt.jpa.core.context with type parameters of type PersistentType
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentType,org.eclipse.jpt.common.utility.iterable.ListIterable<? extends ReadOnlyPersistentAttribute>> PersistentType.ATTRIBUTES_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentType,TypeMapping> PersistentType.MAPPING_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentType,PersistentType> PersistentType.OVERRIDDEN_PERSISTENT_TYPE_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentType,PersistentType> PersistentType.OVERRIDDEN_PERSISTENT_TYPE_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentType,PersistentType> PersistentType.SUPER_PERSISTENT_TYPE_TRANSFORMER
           
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentType,PersistentType> PersistentType.SUPER_PERSISTENT_TYPE_TRANSFORMER
           
 

Methods in org.eclipse.jpt.jpa.core.context that return PersistentType
 PersistentType PersistentType.getOverriddenPersistentType()
          Return the persistent type the persistent type overrides.
 PersistentType ReadOnlyPersistentAttribute.getOwningPersistentType()
          Return the persistent type that owns (declares) the attribute.
 PersistentType TypeMapping.getPersistentType()
           
 PersistentType CollectionMapping.getResolvedTargetType()
           
 PersistentType PersistentType.getSuperPersistentType()
          Return the "super" PersistentType from the "persistence" inheritance hierarchy.
protected  PersistentType PersistentType.SuperPersistentTypeTransformer.transform_(PersistentType persistentType)
           
protected  PersistentType PersistentType.OverriddenPersistentTypeTransformer.transform_(PersistentType persistentType)
           
 

Methods in org.eclipse.jpt.jpa.core.context that return types with arguments of type PersistentType
 Iterable<PersistentType> PersistentType.getAncestors()
          Return the persistent type's "persistence" inheritance hierarchy, excluding the persistent type itself.
 Iterable<PersistentType> PersistentType.getInheritanceHierarchy()
          Return the persistent type's "persistence" inheritance hierarchy, including the persistent type itself.
 Class<? extends PersistentType> PersistentType.getType()
           
 

Methods in org.eclipse.jpt.jpa.core.context with parameters of type PersistentType
 String ReadOnlyPersistentAttribute.getTypeName(PersistentType contextType)
          Return the resolved, qualified name of the attribute's type (see ReadOnlyPersistentAttribute.getTypeName()) in the context of the given PersistentType.
protected  PersistentType PersistentType.SuperPersistentTypeTransformer.transform_(PersistentType persistentType)
           
protected  PersistentType PersistentType.OverriddenPersistentTypeTransformer.transform_(PersistentType persistentType)
           
 TypeMapping PersistentType.MappingTransformer.transform(PersistentType pt)
           
 org.eclipse.jpt.common.utility.iterable.ListIterable<? extends ReadOnlyPersistentAttribute> PersistentType.AttributesTransformer.transform(PersistentType type)
           
 

Uses of PersistentType in org.eclipse.jpt.jpa.core.context.java
 

Subinterfaces of PersistentType in org.eclipse.jpt.jpa.core.context.java
 interface JavaPersistentType
          Context Java persistent type.
 

Methods in org.eclipse.jpt.jpa.core.context.java with parameters of type PersistentType
 JavaPersistentAttribute Accessor.buildUnannotatedJavaAttribute(PersistentType type)
          Build a Java persistent attribute that wraps the original Java resource attributes and behaves as though it has no annotations.
 

Uses of PersistentType in org.eclipse.jpt.jpa.core.context.orm
 

Subinterfaces of PersistentType in org.eclipse.jpt.jpa.core.context.orm
 interface OrmPersistentType
          orm.xml persistent type Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Methods in org.eclipse.jpt.jpa.core.context.orm that return PersistentType
 PersistentType EntityMappings.resolvePersistentType(String className)
          Return the persistent type for the specified class name found in the persistence unit.
 

Uses of PersistentType in org.eclipse.jpt.jpa.core.context.persistence
 

Fields in org.eclipse.jpt.jpa.core.context.persistence with type parameters of type PersistentType
static org.eclipse.jpt.common.utility.transformer.Transformer<PersistentTypeContainer,Iterable<? extends PersistentType>> PersistentTypeContainer.TRANSFORMER
           
 

Methods in org.eclipse.jpt.jpa.core.context.persistence that return PersistentType
 PersistentType PersistentTypeContainer.getPersistentType(String typeName)
          Return the persistent type with the specified name.
 

Methods in org.eclipse.jpt.jpa.core.context.persistence that return types with arguments of type PersistentType
 Iterable<PersistentType> PersistenceUnit.getJavaPersistentTypes()
          Return the persistence unit's Java persistent types, as specified by the class refs (both specified and implied) and jar files.
 Iterable<? extends PersistentType> PersistentTypeContainer.getPersistentTypes()
          Return the container's persistent types.
 Iterable<? extends PersistentType> PersistentTypeContainer.PersistentTypesTransformer.transform(PersistentTypeContainer container)
           
 

Uses of PersistentType in org.eclipse.jpt.jpa.core.jpa2.context
 

Subinterfaces of PersistentType in org.eclipse.jpt.jpa.core.jpa2.context
 interface PersistentType2_0
          JPA 2.0 context persistent type.
 

Methods in org.eclipse.jpt.jpa.core.jpa2.context that return PersistentType
 PersistentType MetamodelSourceType.getSuperPersistentType()
          Return the source type's super type.
 

Uses of PersistentType in org.eclipse.jpt.jpa.core.jpql.spi
 

Methods in org.eclipse.jpt.jpa.core.jpql.spi with parameters of type PersistentType
protected  IManagedType JpaManagedTypeProvider.buildManagedType(PersistentType persistentType)
           
 

Uses of PersistentType in org.eclipse.jpt.jpa.eclipselink.core.context.orm
 

Subinterfaces of PersistentType in org.eclipse.jpt.jpa.eclipselink.core.context.orm
 interface EclipseLinkOrmPersistentType
          eclipselink-orm.xml persistent type: mapping access access-methods attributes super persistent type Java persistent type
 

Uses of PersistentType in org.eclipse.jpt.jpa.eclipselink.core.context.persistence
 

Methods in org.eclipse.jpt.jpa.eclipselink.core.context.persistence that return types with arguments of type PersistentType
protected  HashMap<String,PersistentType> EclipseLinkPersistenceUnit.getPersistentTypesToSynchronizeMetamodel()
           
 

Uses of PersistentType in org.eclipse.jpt.jpa.ui
 

Methods in org.eclipse.jpt.jpa.ui with parameters of type PersistentType
 Iterable<MappingUiDefinition> JpaPlatformUi.getTypeMappingUiDefinitions(PersistentType persistentType)
          Return the list of possible type mapping ui definitions filtered using MappingUiDefinition#isEnabledFor(JpaContextNode).
 


Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.