Package edm.edom3
Interface EDMDebug
-
- All Superinterfaces:
EDMContextDependent
public interface EDMDebug extends EDMContextDependent
Miscellaneous Debug functionality for the JAVA interface- Author:
- aet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
fakeEdmiCustom(long lPar, java.lang.String sPar)
Custom debug routine - no defined behaviourvoid
fakeEdmiDelay(long milliseconds)
Fake a time-consuming operation in EDMIvoid
fakeEdmiError(long errcode)
Fake an error in the JNI part of the JAVA interface-
Methods inherited from interface edm.edom3.EDMContextDependent
getContext
-
-
-
-
Method Detail
-
fakeEdmiDelay
void fakeEdmiDelay(long milliseconds) throws EdmiException
Fake a time-consuming operation in EDMI- Parameters:
milliseconds
- faked duration, limit small < 60000.- Throws:
EdmiException
- if the method fails
-
fakeEdmiError
void fakeEdmiError(long errcode) throws EdmiException
Fake an error in the JNI part of the JAVA interface- Parameters:
errcode
- errcode to fake- Throws:
EdmiException
- containing the errcode
-
fakeEdmiCustom
java.lang.String fakeEdmiCustom(long lPar, java.lang.String sPar) throws EdmiException
Custom debug routine - no defined behaviour- Parameters:
lPar
- long paramsPar
- string param- Returns:
- a string if applicable
- Throws:
EdmiException
- if the method fails
-
-