mds.provider.MdsDataProviderLocal 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.MdsConnectionLocal;
public class MdsDataProviderLocal extends MdsDataProvider
{
@Override
public MdsConnection getConnection()
{ return new MdsConnectionLocal(); }
@Override
public MdsConnection getConnection(String arg)
{
return this.getConnection();
}
}