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