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

cdc.applic.substitutions.Mapping Maven / Gradle / Ivy

package cdc.applic.substitutions;

import cdc.applic.dictionaries.Dictionary;

/**
 * Marking interface of objects used to define a replacement mapping.
 *
 * @author Damien Carbonne
 */
public interface Mapping {
    /**
     * Returns {@code true} if this Mapping is compliant with a dictionary.
     *
     * @param dictionary The Dictionary.
     * @return {@code true} if this Mapping is compliant with {@code dictionary}.
     */
    public boolean isCompliantWith(Dictionary dictionary);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy