01: /*
02: * Copyright 2006 Ethan Nicholas. All rights reserved.
03: * Use is subject to license terms.
04: */
05: package jaxx.spi;
06:
07: /** Performs SPI initialization, typically by calling the various registration methods on
08: * {@link jaxx.tags.TagManager} and {@link jaxx.types.TypeManager}.
09: */
10: public interface Initializer {
11: /** Performs SPI initialization, typically by calling the various registration methods on
12: * {@link jaxx.tags.TagManager} and {@link jaxx.types.TypeManager}.
13: */
14: void initialize();
15: }
|