automatic code generation for IDL (ITTVIS/exelis) in eclipse IDE? -
i hoping find way automatically generate code based on existing code. actual functionality similar javadoc or in case idldoc or automatic get/set functions.
i want create generic code based on listed parameters. how accomplish within eclipse?
i think example best, here accomplish:
keyword1: stuffidontcareabout, $;comments keyword2: otherstuffidontcareabout, $;more comments keyword3: laststuffidontcareabout $
what need in eclipse can have eclipse parse above block , output following part of code?
keyword1=inp_keyword1, keyword2=inp_keyword2, keyword3=inp_keyword3
thanks
my usual knee-jerk response suggest use jet it's designed for.
for specific case, however, might better off writing simple popup action (use new plugin project popup action template) parses properties file (looks simple enough in java) , writes out target code file, console or, if you're clever, existing file in right place.
once have plugin generated template, rest should simple java.
Comments
Post a Comment