Evaluating creation of GUI via file vs coding

Posted by nevets1219 on Stack Overflow See other posts from Stack Overflow or by nevets1219
Published on 2010-03-15T23:51:39Z Indexed on 2010/03/16 0:09 UTC
Read the original article Hit count: 177

Filed under:
|
|
|
|

I'm working on a utility that will be used to test the project I'm currently working on. What the utility will do is allow user to provide various inputs and it will sends out requests and provide the response as output.

However, at this point the exact format (which input is required and what is optional) has yet to be fleshed out. In addition, coding in Swing is somewhat repetitive since the overall work is simple though this should be the safest route to go as I have more or less full control and every component can be tweaked as I want. I'm considering using a configuration file that's in XML to describe the GUI (at least one part of it) and then coding the event handling part (in addition to validation, etc). The GUI itself shouldn't be too complicated. For each type of request to make there's a tab for the request and within each tab are various inputs.

There seems to be quite a few questions about this already but I'm not asking for a 3rd party library to do this. I'm looking to do this myself, since I don't think it'll be too overly complicated (hopefully). My main consideration for using this is re-usability (later on, for other projects) and for simplifying the GUI work. My question is: are there other pros/cons that I'm overlooking? Is it worth the (unknown) time to do this?

I've built GUI in VB.NET and with Flex3 before.

© Stack Overflow or respective owner

Related posts about gui

Related posts about java