mds.provider.MdsDataProviderSsh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jscope Show documentation
Show all versions of jscope Show documentation
MDSplus data display program for waveforms, images and more.
package mds.provider;
import mds.connection.MdsConnection;
import mds.provider.mds.MdsConnectionSSH;
public class MdsDataProviderSsh extends MdsDataProvider
{
@Override
public MdsConnection getConnection()
{ return new MdsConnectionSSH(); }
@Override
public MdsConnection getConnection(String arg)
{
return new MdsConnectionSSH(arg);
}
}