* Formatting for com.jme3.effect package * Formatting for blender importer and networking tests * All networking tests ported to new SpiderMonkey * Removed all mentions of java.util.Serializable * RMI now works under new SpiderMonkey git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7593 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
22 lines
577 B
Java
22 lines
577 B
Java
package jme3test.blender.config;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
import com.jme3.asset.ModelKey;
|
|
|
|
/**
|
|
* This interface provides a method that allows to execute a method after the config has been properly set. It actually runs the test
|
|
* itself.
|
|
* @author Marcin Roguski (Kaelthas)
|
|
*/
|
|
public interface ConfigExecutable {
|
|
/**
|
|
* This method runs the test with the given blender key.
|
|
* @param modelKey
|
|
* the model key
|
|
* @param logLevel
|
|
* the jme3 logger log level
|
|
*/
|
|
void execute(ModelKey modelKey, Level logLevel);
|
|
}
|