mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Add some more apex and openedge fixtures
This commit is contained in:
23
test/fixtures/openedge-abl/SendEmailAlgorithm.cls
vendored
Normal file
23
test/fixtures/openedge-abl/SendEmailAlgorithm.cls
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
/*------------------------------------------------------------------------
|
||||
File : SendEmailAlgorithm
|
||||
Purpose :
|
||||
Syntax :
|
||||
Description : Uses object-oriented Strategy Pattern to abstract away the
|
||||
algorithm for sending an email by encapsulating it
|
||||
into a data structure.
|
||||
Author(s) : Abe Voelker
|
||||
Created : Sat Jul 17 17:11:18 CDT 2010
|
||||
Notes :
|
||||
----------------------------------------------------------------------*/
|
||||
|
||||
USING Progress.Lang.*.
|
||||
|
||||
INTERFACE email.SendEmailAlgorithm:
|
||||
|
||||
/* Returns: */
|
||||
/* SUCCESS = empty return string */
|
||||
/* FAILURE = error message in return string */
|
||||
METHOD PUBLIC CHARACTER sendEmail(INPUT ipobjEmail AS email.Email).
|
||||
|
||||
END INTERFACE.
|
||||
Reference in New Issue
Block a user