home *** CD-ROM | disk | FTP | other *** search
- AbtEditAPPCExtApp becomeDefault!
-
- !AbtAPPCConnectionSpec class privateMethods !
-
- convertReturnControlString: aString ifAbsent: aBlock
- "Convert the string to a constant"
-
- self returnControlStrings indexOf: aString
- ifAbsent: [ ^aBlock value ].
- ^AbtAPPCConstants at: 'Ap', aString ifAbsent: [^aBlock value ] "$NON-NLS$"
-
- !
-
- convertSecurityString: aString ifAbsent: aBlock
- "Convert the string to a constant"
-
- self securityStrings indexOf: aString
- ifAbsent: [ ^aBlock value ].
- ^AbtAPPCConstants at: 'Ap', aString ifAbsent: [^aBlock value ] "$NON-NLS$"
-
- !
-
- convertSyncLevelString: aString ifAbsent: aBlock
- "Convert the string to a constant"
-
- self syncLevelStrings indexOf: aString
- ifAbsent: [ ^aBlock value ].
- ^AbtAPPCConstants at: 'Ap', aString ifAbsent: [^aBlock value ] "$NON-NLS$"
-
- ! !