JIDLConst
Declaration
Description
Contains constants used by the Java-IDL wrapper classes.
Fields
CONTROL_INPROC
Control flag for determining object is to be created in-process
CONTROL_OUTPROC
Control flag for determining object is to be created out-of-process
IDL_ABORT_NOT_OWNER
Error code when an abort request is made, but the calling object does not have permission to request the abort.
Note that when this error occurs, a JIDLException is thrown to the calling client with this value as its error code.
See Also:
JIDLException, JIDLObjectI.abort()
IDL_ABORT_NOT_OWNER_MESSAGE
Internal use. Error message when an abort request is made, but the calling object does not have permission to request the abort.
IDL_ABORTED
Error code returned when IDL processing has aborted due to an abort request.
Note that when this error occurs, a JIDLAbortedException is thrown to the calling client with this value as its error code.
See Also:
JIDLAbortedException, JIDLException, JIDLObjectI.abort()
IDL_BUSY
Error code returned if IDL is called while processing another request.
Note that when this error occurs, a JIDLBusyException is thrown to the calling client with this value as its error code.
See Also:
JIDLBusyException, JIDLException, JIDLObjectI.abort()
IDL_NOTHING_TO_ABORT
Error code when an abort request is made, but there is nothing to abort.
Note that when this error occurs, a JIDLException is thrown to the calling client with this value as its error code.
See Also:
JIDLException, JIDLObjectI.abort()
IDL_NOTHING_TO_ABORT_MESSAGE
Internal use. Error message when an abort request is made, but there is nothing to abort.
PARMFLAG_CONST
Parameter associated with this flag and passed to IDL is const (in-only). It is expected IDL will not change this parameter. Any changes that happened in IDL will be ignored.
See Also:
PARMFLAG_CONVMAJORITY
Parameter associated with this flag and passed to IDL is an array whose majority will be convolved.
Note that if set, the array will be convolved when passed from Java to IDL, and convolved again in the in-out case, when passed back to Java.
See Also:
PARMFLAG_IN_OUT
Parameter associated with this flag and passed to IDL is in-out (mutable). It is expected IDL may change this parameter and on return from IDL the data will be copied back to the Java object.
See Also:
PARMFLAG_NO_CONVMAJORITY
Parameter associated with this flag and passed to IDL is an array whose majority will NOT be convolved.
Note that for arrays of dimensions 2 throught 8, this may be quicker than PARMFLAG_CONVMAJORITY because the array doesn't need to be re-ordered when passed between Java and IDL memory space.