Likewise, if you want to ask a more specific question to see how the developer would tackle a certain task, consider something like this:
Lets say a designer sends you a html/css design for a popup on the site. Popup is used to input some data. You have to implement such a popup in gwt. The html/css of the result popup has to look exactly like the one provided. How would you go about implementing this. Which widgets could you use, and which you cannot? Are there more approaches to this problem? What are the problems that might arise, and which parts of this design could be problematic for gwt?
This is the example html code:
<div id="popup" class="our-popup">
<div class="popup-body">
<div class="header">
<div class="content">
<form action="#">
<fieldset>
<label for="f1">field1:</label><input type="text" id="f1" tabindex="11" /><br />
<label for="f2">field2:</label><input type="text" id="f2" tabindex="12" /><br />
<label for="f3">field3:</label><input type="text" id="f3" tabindex="13" /><br />
<br />
<input type="submit" value="sumbit" tabindex="20" />
</fieldset>
</form>
</div>
</div>
</div>
After you have the custom popup widget, how would you plug it in to your application? How would you get the input to your service layer?
The point of this question is not for the developer to solve it right away, but to test the way of thinking and the way of handling and solving problems in this domain.