01: /* ExtendletConfig.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Thu Jul 5 09:56:30 2007, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2007 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: This program is distributed under GPL Version 2.0 in the hope that
16: it will be useful, but WITHOUT ANY WARRANTY.
17: }}IS_RIGHT
18: */
19: package org.zkoss.web.util.resource;
20:
21: /**
22: * The configuration information used to initialize an Extendlet
23: * (aka., a resource processor).
24: *
25: * @author tomyeh
26: * @since 2.4.1
27: * @see Extendlet#init
28: */
29: public interface ExtendletConfig {
30: /** Returns the Extendlet context.
31: */
32: public ExtendletContext getExtendletContext();
33: }
|