blob: 1cf9c7330957db0cce050f67a287ace892ccbc10 [file] [log] [blame]
package com.intellij.remoteServer.agent;
import java.io.File;
import java.util.List;
/**
* @author michael.golubev
*/
public interface RemoteAgentProxyFactory {
<T> T createProxy(List<File> libraries, Class<T> agentInterface, String agentClassName) throws Exception;
}