| TDAT: protected TilesContainer createTilesContainer() throws TilesException { | |
| ServletContextAdapter adaptedContext = new ServletContextAdapter( | |
| new DelegatingServletConfig()); | |
| TilesApplicationContext preliminaryContext = new ServletTilesApplicationContext( | |
| adaptedContext); | |
| AbstractTilesApplicationContextFactory contextFactory = AbstractTilesApplicationContextFactory | |
| .createFactory(preliminaryContext); | |
| this.tilesContext = contextFactory | |
| .createApplicationContext(adaptedContext); | |
| AbstractTilesContainerFactory factory = AbstractTilesContainerFactory | |
| .getTilesContainerFactory(this.tilesContext); | |
| return factory.createContainer(this.tilesContext); | |
| } | |
| COM: <s> create a tiles container for this web application </s> | |