[Major] refactored Element maps for better handling

Now they are not components, now there is an ElementMapHandler which
is the component and the OrderMap and ResourceMap can be retrieved from
the ElementMapHandler
This commit is contained in:
Robert von Burg 2013-12-23 18:43:06 +01:00
parent d585a9e3d6
commit 38ab6e054b
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@
*/
package li.strolch.tutorialapp.postinitializer;
import li.strolch.runtime.component.ComponentContainer;
import li.strolch.runtime.component.SimplePostInitializer;
import li.strolch.runtime.agent.ComponentContainerImpl;
import li.strolch.runtime.agent.SimplePostInitializer;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
@ -28,7 +28,7 @@ public class PostInitializer extends SimplePostInitializer {
* @param container
* @param componentName
*/
public PostInitializer(ComponentContainer container, String componentName) {
public PostInitializer(ComponentContainerImpl container, String componentName) {
super(container, componentName);
}