All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infrastructurebuilder.data.model.DataSetInputLocationTracker Maven / Gradle / Ivy

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 );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy