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

marcel.lang.Delegable Maven / Gradle / Ivy

package marcel.lang;

/**
 * Interface specifying that the class is delegable, meaning that within this class
 * we can call methods from the delegate without having to reference it
 * @param  the type of the delegate
 */
public interface Delegable {

    /**
     * Returns the delegate of this class
     * @return the delegate of this class
     */
    T getDelegate();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy