/** * @author STF 424_ITS_Test_Platform * @version $URL$ * $Id$ */ package org.etsi.common; /** * This interface provides mandatory method to be implemented by a Tuple {A, B} * @param Type of the first member of the Tuple * @param Type of the second member of the Tuple */ public interface ITuple { /** Retrieve the A element of the tuple * @return the _a */ public abstract A getA(); /** Retrieve the B element of the tuple * @return the _b */ public abstract B getB(); }