Is there a process-oriented IDE ?

Posted by Raveline on Programmers See other posts from Programmers or by Raveline
Published on 2011-03-03T08:39:40Z Indexed on 2011/03/03 15:33 UTC
Read the original article Hit count: 309

Filed under:
|
|

My problem is simple : when I'm programming in an OO paradigm, I'm often having part of a main business process divided in many classes. Which means, if I want to examine the whole functional chain that leads to the output, for debugging or for optimization research, it can be a bit painful.

So I was wondering : is there an IDE that let you put a "process tag" on functions coming from different objects, and give you a view of all those functions having the same tag ?

edit : To give an example (that I'm making up completely, sorry if it doesn't sound very realistic).

Let's say we have the following business process for a HR application : receive a holiday-request by an employee, check the validity of the request, then give an alert to his boss ("one of those lazy programmer wants another day off"); at the same time, let's say the boss will want to have a table of all employee's timetable during the time the employee wants his vacations; then handle the answer of the boss, send a nice little mail to the employee ("No way, lazy bones").

Even if we get rid of everything not purely business-related (mail sending process, db handling to get the useful info, GUI functionalities, and so on), we still have something that doesn't really fit in "one class". I'd like to have an IDE that would give me the opportunity to embrace quickly, at the very least :

  • The function handling the validation of the request by the employee;
  • The function preparing the "timetable" for the boss;
  • The function handling the validation of the request by the boss;

I wouldn't put all those functions in the same class (but perhaps that's my mistake ?). This is where my dreamed IDE could be helpful.

© Programmers or respective owner

Related posts about programming

Related posts about ide