Package org.zkoss.zk.ui
Interface RichletConfig
-
- All Known Implementing Classes:
RichletConfigImpl
,SerializableRichletConfig
public interface RichletConfig
A richlet configuration object used by a richlet container to pass information to a richlet during initialization.- Author:
- tomyeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getInitParameter(java.lang.String name)
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.java.lang.Iterable<java.lang.String>
getInitParameterNames()
Returns the names of the richlet's initialization parameters as an iterable String objects (never null).WebApp
getWebApp()
Returns the web application that the richlet belongs to.
-
-
-
Method Detail
-
getWebApp
WebApp getWebApp()
Returns the web application that the richlet belongs to.
-
getInitParameter
java.lang.String getInitParameter(java.lang.String name)
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.
-
getInitParameterNames
java.lang.Iterable<java.lang.String> getInitParameterNames()
Returns the names of the richlet's initialization parameters as an iterable String objects (never null).- Since:
- 6.0.0
-
-