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

net.sf.staccatocommons.defs.Executable Maven / Gradle / Ivy

/**
 *  Copyright (c) 2010-2012, The StaccatoCommons Team
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation; version 3 of the License.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Lesser General Public License for more details.
 */

package net.sf.staccatocommons.defs;

/**
 * {@link Executable}s are computations that take one argument and whose result
 * is a side effect, instead of a return value.
 * 

* {@link Executable} has the same semantics that an {@link Applicable} of * {@link Void} return type, but is provided for ease of coding. Concrete * implementors should implement {@link Applicable} as well. *

* * @author flbulgarelli * * @param * the type of the argument of the computation * * @see Applicative Recomendations for implementing */ public interface Executable { /** * Performs a side-effect computation. * * @param argument * the argument of the computation. */ void exec(T argument); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy