37383940414243
public class ElgatoDriver implements DriverIf { /** Translator */ private static final Localizer mLocalizer = Localizer.getLocalizerFor(ElgatoDriver.class); public DeviceIf createDevice(String name) { return new SimpleDevice(new ElgatoConnection(), this, name); }
19202122232425
public String getDriverDesc() { return mLocalizer.msg("desc", "Description"); } public DeviceIf createDevice(String name) { return new SimpleDevice(new TheTubeConnection(), this, name); }