blob: 97c66b698f14e0b8516072f0f3ee0e486a45fae5 [file] [log] [blame]
package org.eclipse.jst.jsf.common.sets.internal.provisional.mapping;
import org.eclipse.jst.jsf.common.sets.internal.provisional.AxiomaticSet;
/**
* Defines an axiomatic mapping from set to another. In formal notation, this may
* also be defined as a "function" or a "proposition".
*
* Applying the map method can be seen as being equivalent to:
*
* AxiomaticSetMapping: set -> map(set)
*
* @author cbateman
*
*/
public interface AxiomaticSetMapping
{
/**
* @param set
* @return
*/
AxiomaticSet map(AxiomaticSet set);
}