I'm interested in the Presentation-Abstraction-Control? (aka Hierarchical-Model-View-Controller (HMVC)) Architectural Pattern for constructing complex user interfaces (GUI or web) and was wondering if anyone was aware of any examples in the wild where I could read the code?

I'm aware of the JavaWorld article and associated letters cited in the Presentation-Abstraction-Control wikipedia article.

link|improve this question
feedback

6 Answers

up vote 4 down vote accepted

In the php world, I'm aware of a few methods that might qualify as HMVC. They all allow calling a controller and displaying the results from within a view. The calls can be nested infinitly creating widgets within widgets.

link|improve this answer
3  
Yo dawg, we heard you like widgets, so we put a widget inside your widget, so you can call a widget while you're calling a widget. – Kevin C. Aug 2 '11 at 19:26
feedback

It's my understanding that the Cairngorm framework for Adobe Flex is just one example of an HMVC implementation. It's open source, so you can find out more information and download the code at Adobe's website.

link|improve this answer
thanks - thats a really good tip! – Stephen Sep 18 '08 at 20:04
feedback

I wrote an HMVC framework a while back for J2EE and FreeMarker:

http://www.neocoders.com/portal/projects/jandal

and recently another one for Javascript:

http://www.neocoders.com/portal/projects/subo

These are fairly 'experimental', but might be of some academic use.

cheers, Lindsay

link|improve this answer
feedback

The APF-Webframework - http://adventure-php-framework.org/Page/001-Home - uses HMVC since many years, and has a very experienced and engaged developer. Only the small community discourages a little bit.

link|improve this answer
feedback

I wrote an HMVC framework in PHP called Alloy:

http://alloyframework.org/

It's pretty lightweight and has a modular structure.

link|improve this answer
feedback

@Skamander: the english language community is quite small at the moment, but the german is not. If you want to try out the APF feel free to post any question within the english or german language forum. I'm sure you'll get a satisfying answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.