I am trying to incorporate feature similar to JavaDoc in my Java and C/C++ editor. Suppose I type "ABC" and press enter, it should be auto completed as
/* * ABCD * XYZ * 1234 */
I have to do it programmatically. What are the ways that I can achieve this?