2026-03-17 13:31:18 -07:00

13 lines
417 B
Java

package com.honeywell.honeywellXL10NextGen.xl10Controller.download;
import com.honeywell.honeywellXL10NextGen.xl10Controller.device.ISpyderDevice;
import javax.baja.batchJob.BValueList;
public interface IDeviceFileWriter {
boolean download(ISpyderDevice iSpyderDevice, BValueList bValueList, boolean z);
void endDownload();
boolean quickDownload(ISpyderDevice iSpyderDevice, BValueList bValueList);
}