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

com.xrosstools.xunit.Decorator Maven / Gradle / Ivy

The newest version!
package com.xrosstools.xunit;

public interface Decorator extends Adapter {
	/**
	 * Extends this method to provide decoration before decorated unit executed
	 * @param ctx
	 */
	void before(Context ctx);

	/**
	 * Extends this method to provide decoration after decorated unit executed
	 * @param ctx
	 */
	void after(Context ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy