com.mockrunner.gen.proc.AdapterProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockrunner-core Show documentation
Show all versions of mockrunner-core Show documentation
Core classes common to all Mockrunner modules
package com.mockrunner.gen.proc;
import java.util.List;
public interface AdapterProcessor
{
public void process(Class module, List excludedMethods);
public String getName();
public String getOutput();
}