org.infrastructurebuilder.data.model.DataSetInputLocationTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ibdata-api Show documentation
Show all versions of ibdata-api Show documentation
APIs for dealing with data streams
The newest version!
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.11,
// any modifications will be overwritten.
// ==============================================================
package org.infrastructurebuilder.data.model;
/**
* Interface DataSetInputLocationTracker.
*
* @version $Revision$ $Date$
*/
public interface DataSetInputLocationTracker
{
//-----------/
//- Methods -/
//-----------/
/**
* Gets the location of the specified field in the input
* source.
*
* @param field The key of the field, must not be
* null
.
* @return The location of the field in the input source or
* null
if unknown.
*/
public DataSetInputLocation getLocation( Object field );
/**
* Sets the location of the specified field.
*
* @param field The key of the field, must not be
* null
.
* @param location The location of the field, may be
* null
.
*/
public void setLocation( Object field, DataSetInputLocation location );
}