blob: b484f0f403b04fa35ed66d4eca79b03ccd51617f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.eclipselink.core.context;
import java.util.ListIterator;
import org.eclipse.jpt.core.context.JpaContextNode;
/**
*
*
* 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.
*
* @version 2.1
* @since 2.1
*/
public interface ConverterHolder extends JpaContextNode
{
//************ converters *********************
/**
* Return a list iterator of the converters.
* This will not be null.
*/
<T extends EclipseLinkConverter> ListIterator<T> converters();
/**
* Return the number of converters.
*/
int convertersSize();
/**
* Add a converter to the converter holder, return the object representing it.
*/
EclipseLinkConverter addConverter(int index);
/**
* Remove the converter at the index from the converter holder.
*/
void removeConverter(int index);
/**
* Remove the converter at from the converter holder.
*/
void removeConverter(EclipseLinkConverter converter);
/**
* Move the converter from the source index to the target index.
*/
void moveConverter(int targetIndex, int sourceIndex);
String CONVERTERS_LIST = "convertersList"; //$NON-NLS-1$
//************ object type converters *********************
/**
* Return a list iterator of the object type converters.
* This will not be null.
*/
<T extends EclipseLinkObjectTypeConverter> ListIterator<T> objectTypeConverters();
/**
* Return the number of object type converters.
*/
int objectTypeConvertersSize();
/**
* Add a object type converter to the converter holder, return the object representing it.
*/
EclipseLinkConverter addObjectTypeConverter(int index);
/**
* Remove the object type converter at the index from the converter holder.
*/
void removeObjectTypeConverter(int index);
/**
* Remove the object type converter at from the converter holder.
*/
void removeObjectTypeConverter(EclipseLinkObjectTypeConverter converter);
/**
* Move the object type converter from the source index to the target index.
*/
void moveObjectTypeConverter(int targetIndex, int sourceIndex);
String OBJECT_TYPE_CONVERTERS_LIST = "objectTypeConvertersList"; //$NON-NLS-1$
//************ struct converters *********************
/**
* Return a list iterator of the struct converters.
* This will not be null.
*/
<T extends EclipseLinkStructConverter> ListIterator<T> structConverters();
/**
* Return the number of struct converters.
*/
int structConvertersSize();
/**
* Add a struct converter to the converter holder, return the object representing it.
*/
EclipseLinkStructConverter addStructConverter(int index);
/**
* Remove the struct converter at the index from the converter holder.
*/
void removeStructConverter(int index);
/**
* Remove the struct converter at from the converter holder.
*/
void removeStructConverter(EclipseLinkStructConverter converter);
/**
* Move the struct converter from the source index to the target index.
*/
void moveStructConverter(int targetIndex, int sourceIndex);
String STRUCT_CONVERTERS_LIST = "structConvertersList"; //$NON-NLS-1$
//************ type converters *********************
/**
* Return a list iterator of the type converters.
* This will not be null.
*/
<T extends EclipseLinkTypeConverter> ListIterator<T> typeConverters();
/**
* Return the number of type converters.
*/
int typeConvertersSize();
/**
* Add a type converter to the converter holder, return the object representing it.
*/
EclipseLinkStructConverter addTypeConverter(int index);
/**
* Remove the type converter at the index from the converter holder.
*/
void removeTypeConverter(int index);
/**
* Remove the type converter at from the converter holder.
*/
void removeTypeConverter(EclipseLinkTypeConverter converter);
/**
* Move the type converter from the source index to the target index.
*/
void moveTypeConverter(int targetIndex, int sourceIndex);
String TYPE_CONVERTERS_LIST = "typeConvertersList"; //$NON-NLS-1$
}