tileActions = new ArrayList<TileAction>();
IConfigurationElement[] config = Platform.getExtensionRegistry()
.getConfigurationElementsFor(TILEACTION_ID);
try {
for (IConfigurationElement e : config) {
TileAction bean = (TileAction) e
.createExecutableExtension(TILEACTION);
ReInjector.getInstance().reInject(bean);
tileActions.add(bean);
if (e.getAttribute(TILEIMAGE) != null
&& !e.getAttribute(TILEIMAGE).isEmpty()) {