01: package org.osbl.client.wings.shell;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: * User: hengels
06: * Date: Sep 25, 2006
07: * Time: 3:32:23 PM
08: * To change this template use File | Settings | File Templates.
09: */
10: public interface ClientInitializer {
11: void preInitialization(Client client);
12:
13: void postInitialization(Client client);
14: }
|