link start!
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
package com.honeywell.lonSpyder.xl10Controller.compilation.shortstack;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIMacro;
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.IChecksumCRCGenerator;
|
||||
import javax.baja.lonworks.BLonDevice;
|
||||
import javax.baja.lonworks.enums.BLonNvDirection;
|
||||
import javax.baja.lonworks.enums.BLonServiceType;
|
||||
import javax.baja.lonworks.londata.BLonData;
|
||||
import javax.baja.sys.BComponent;
|
||||
import javax.baja.sys.BObject;
|
||||
|
||||
public interface IShortStack {
|
||||
void generateShortStackImage(BLonDevice bLonDevice, BObject bObject, BComponent[] bComponentArr) throws Exception;
|
||||
|
||||
BLonNvDirection[] getListOfNVDirection(byte[] bArr);
|
||||
|
||||
String[] getListOfNVNames(byte[] bArr, BIMacro bIMacro, int i);
|
||||
|
||||
BLonServiceType[] getListOfServiceTypes(byte[] bArr);
|
||||
|
||||
int[] getListOfSnvtTypes(byte[] bArr);
|
||||
|
||||
BLonData getLonAppInitData();
|
||||
|
||||
int getLonAppInitDataLength();
|
||||
|
||||
BLonData getLonSiData();
|
||||
|
||||
int getLonSiDataLength();
|
||||
|
||||
void setChecksumAndLength(IChecksumCRCGenerator iChecksumCRCGenerator);
|
||||
|
||||
byte[] toNetBytes(int i);
|
||||
}
|
||||
Reference in New Issue
Block a user