Package org.zkoss.zk.ui.impl
Class RichletConfigImpl
- java.lang.Object
-
- org.zkoss.zk.ui.impl.RichletConfigImpl
-
- All Implemented Interfaces:
RichletConfig
public class RichletConfigImpl extends java.lang.Object implements RichletConfig
An implementation ofRichletConfig
.- Author:
- tomyeh
-
-
Constructor Summary
Constructors Constructor Description RichletConfigImpl(WebApp wapp, java.util.Map<java.lang.String,java.lang.String> params)
-
Method Summary
All Methods Instance Methods Concrete 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
public WebApp getWebApp()
Description copied from interface:RichletConfig
Returns the web application that the richlet belongs to.- Specified by:
getWebApp
in interfaceRichletConfig
-
getInitParameter
public java.lang.String getInitParameter(java.lang.String name)
Description copied from interface:RichletConfig
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.- Specified by:
getInitParameter
in interfaceRichletConfig
-
getInitParameterNames
public java.lang.Iterable<java.lang.String> getInitParameterNames()
Description copied from interface:RichletConfig
Returns the names of the richlet's initialization parameters as an iterable String objects (never null).- Specified by:
getInitParameterNames
in interfaceRichletConfig
-
-