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

org.javasimon.proxy.Delegating Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package org.javasimon.proxy;

/**
 * Interface indicating that an object is wrapping another object.
 *
 * @param  Wrapped type
 * @author gerald
 */
public interface Delegating {
	/**
	 * Get wrapped object.
	 *
	 * @return Wrapped object
	 */
	T getDelegate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy