001package org.intellimate.izou.system.context; 002 003/** 004 * this interface provides various methods to interact with Izou-parts not fitting in the other context-categories. 005 * @author LeanderK 006 * @version 1.0 007 */ 008public interface System { 009 /** 010 * this method registers an listener which will be fired when all the addons finished registering. 011 * @param runnable the runnable to register. 012 */ 013 void registerInitializedListener(Runnable runnable); 014}