Dali Provisional API
Release 3.2

org.eclipse.jpt.jpa.eclipselink.core.context.orm
Interface EclipseLinkOrmConverterContainer

All Superinterfaces:
EclipseLinkConverterContainer, IAdaptable, JpaContextModel, JpaModel, JptResourceTypeReference, Model, TypeRefactoringParticipant

public interface EclipseLinkOrmConverterContainer
extends EclipseLinkConverterContainer, TypeRefactoringParticipant

EclipseLink orm.xml converter container

Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

Since:
2.1

Nested Class Summary
static interface EclipseLinkOrmConverterContainer.Parent
           
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.jpa.core.JpaModel
JpaModel.JpaVersionIsCompatibleWith
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
JptResourceTypeReference.ResourceTypeIsKindOf, JptResourceTypeReference.ResourceTypeTransformer
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.jpa.core.context.TypeRefactoringParticipant
TypeRefactoringParticipant.MoveTypeEditsTransformer, TypeRefactoringParticipant.RenamePackageEditsTransformer, TypeRefactoringParticipant.RenameTypeEditsTransformer
 
Field Summary
 
Fields inherited from interface org.eclipse.jpt.jpa.eclipselink.core.context.EclipseLinkConverterContainer
CUSTOM_CONVERTERS_LIST, OBJECT_TYPE_CONVERTERS_LIST, STRUCT_CONVERTERS_LIST, TYPE_CONVERTERS_LIST
 
Fields inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
TRANSFORMER
 
Method Summary
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmCustomConverter addCustomConverter(String name)
           
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmCustomConverter addCustomConverter(String name, int index)
          Add a custom converter to the converter holder, return the object representing it.
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmObjectTypeConverter addObjectTypeConverter(String name)
           
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmObjectTypeConverter addObjectTypeConverter(String name, int index)
          Add a object type converter to the converter holder, return the object representing it.
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmStructConverter addStructConverter(String name)
           
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmStructConverter addStructConverter(String name, int index)
          Add a struct converter to the converter holder, return the object representing it.
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmTypeConverter addTypeConverter(String name)
           
 org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmTypeConverter addTypeConverter(String name, int index)
          Add a type converter to the converter holder, return the object representing it.
 org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmCustomConverter> getCustomConverters()
          Return a list iterator of the custom converters.
 org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmObjectTypeConverter> getObjectTypeConverters()
          Return a list iterator of the object type converters.
 org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmStructConverter> getStructConverters()
          Return a list iterator of the struct converters.
 org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmTypeConverter> getTypeConverters()
          Return a list iterator of the type converters.
 
Methods inherited from interface org.eclipse.jpt.jpa.eclipselink.core.context.EclipseLinkConverterContainer
getConverters, getConvertersSize, getCustomConvertersSize, getMaximumAllowedConverters, getObjectTypeConvertersSize, getStructConvertersSize, getTypeConvertersSize, moveCustomConverter, moveObjectTypeConverter, moveStructConverter, moveTypeConverter, removeCustomConverter, removeCustomConverter, removeObjectTypeConverter, removeObjectTypeConverter, removeStructConverter, removeStructConverter, removeTypeConverter, removeTypeConverter
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.JpaContextModel
getCompletionProposals, getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getParent, getPersistenceUnit, getValidationTextRange, synchronizeWithResourceModel, update, validate
 
Methods inherited from interface org.eclipse.jpt.jpa.core.JpaModel
getJpaPlatform, getJpaProject, getJpaProjectManager, getResource, stateChanged
 
Methods inherited from interface org.eclipse.jpt.common.utility.model.Model
addChangeListener, addCollectionChangeListener, addListChangeListener, addPropertyChangeListener, addStateChangeListener, removeChangeListener, removeCollectionChangeListener, removeListChangeListener, removePropertyChangeListener, removeStateChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
getResourceType
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.TypeRefactoringParticipant
createMoveTypeEdits, createRenamePackageEdits, createRenameTypeEdits
 

Method Detail

getCustomConverters

org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmCustomConverter> getCustomConverters()
Description copied from interface: EclipseLinkConverterContainer
Return a list iterator of the custom converters. This will not be null.

Specified by:
getCustomConverters in interface EclipseLinkConverterContainer

addCustomConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmCustomConverter addCustomConverter(String name,
                                                                                                           int index)
Description copied from interface: EclipseLinkConverterContainer
Add a custom converter to the converter holder, return the object representing it.

Specified by:
addCustomConverter in interface EclipseLinkConverterContainer

addCustomConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmCustomConverter addCustomConverter(String name)

getObjectTypeConverters

org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmObjectTypeConverter> getObjectTypeConverters()
Description copied from interface: EclipseLinkConverterContainer
Return a list iterator of the object type converters. This will not be null.

Specified by:
getObjectTypeConverters in interface EclipseLinkConverterContainer

addObjectTypeConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmObjectTypeConverter addObjectTypeConverter(String name,
                                                                                                                   int index)
Description copied from interface: EclipseLinkConverterContainer
Add a object type converter to the converter holder, return the object representing it.

Specified by:
addObjectTypeConverter in interface EclipseLinkConverterContainer

addObjectTypeConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmObjectTypeConverter addObjectTypeConverter(String name)

getStructConverters

org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmStructConverter> getStructConverters()
Description copied from interface: EclipseLinkConverterContainer
Return a list iterator of the struct converters. This will not be null.

Specified by:
getStructConverters in interface EclipseLinkConverterContainer

addStructConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmStructConverter addStructConverter(String name,
                                                                                                           int index)
Description copied from interface: EclipseLinkConverterContainer
Add a struct converter to the converter holder, return the object representing it.

Specified by:
addStructConverter in interface EclipseLinkConverterContainer

addStructConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmStructConverter addStructConverter(String name)

getTypeConverters

org.eclipse.jpt.common.utility.iterable.ListIterable<org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmTypeConverter> getTypeConverters()
Description copied from interface: EclipseLinkConverterContainer
Return a list iterator of the type converters. This will not be null.

Specified by:
getTypeConverters in interface EclipseLinkConverterContainer

addTypeConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmTypeConverter addTypeConverter(String name,
                                                                                                       int index)
Description copied from interface: EclipseLinkConverterContainer
Add a type converter to the converter holder, return the object representing it.

Specified by:
addTypeConverter in interface EclipseLinkConverterContainer

addTypeConverter

org.eclipse.jpt.jpa.eclipselink.core.internal.context.orm.EclipseLinkOrmTypeConverter addTypeConverter(String name)

Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.