Design Pattern

Easy Data Access In Pages Of GWT/Swing Application
||
When developing desktop based or similar applications, it becomes headache to synchronize data between different pages. Say when Delete is clicked in context menu of some node of tree, Grid and some other panels need to be notified. Here is...
continue reading
Decorator Pattern Explained
||
In recent posts, we identified what issues can arise if we keep going with the design shown in Class Explosion and Etymology Of Decorator Pattern. Lets take a quick look at what fundamental design problems exists in this design. Exsisting...
continue reading
Etymology Of Decorator Pattern
||
Today our purpose is to know why and when to use decorator pattern. In last post about class explosion, we found that there is class explosion if we go with the first trial. Now what we can do to improve...
continue reading
HMVC Pattern For GWT & Swing Applications In Java
||
Why Pattern? When developing client tier of application using html,  there are certain limitations in the way we can organize the things. Because the code is in XML. Religious java developers are generally seen more inclined towards GWT rather than...
continue reading