Eclipse Code Templates with Cobol

Posted by Bruno Brant on Stack Overflow See other posts from Stack Overflow or by Bruno Brant
Published on 2010-03-24T18:58:13Z Indexed on 2010/03/25 8:23 UTC
Read the original article Hit count: 656

Filed under:
|
|

People,

My team is just beginning to learn how to use COBOL on Eclipse (as part of the Rational Developer for System Z package) and one of our most desired features are code templates or code snippets.

What we'd like to have is a code completion based on snippets just like we have on Java. For example, when I type try and hit ctrl-space Eclipse shows me a list of completion options, where one of those is create a try/catch block. Well, in COBOL one could leverage this when creating, for example, embedded SQL blocks, like

EXEC SQL
    SELECT field, field, field,
    FROM table
WHERE field = value, 
      field = value
END-EXEC.

However, for some reason, it seems that Eclipse treats COBOL a little differently (no wonder why) from other languages. As such, when looking for the code templates in the preferences menu for COBOL, its appearance is very different from the Java one.

The question is: how does one uses Eclipse's code templates with COBOL?

© Stack Overflow or respective owner

Related posts about cobol

Related posts about eclipse