com.xrosstools.xunit.Decorator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xunit Show documentation
Show all versions of xunit Show documentation
The runtime for xross unit model
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