📄 richletconfigimpl.java
字号:
/* RichletConfigImpl.java{{IS_NOTE Purpose: Description: History: Thu Oct 5 15:24:09 2006, Created by tomyeh}}IS_NOTECopyright (C) 2006 Potix Corporation. All Rights Reserved.{{IS_RIGHT This program is distributed under GPL Version 2.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zk.ui.impl;import java.util.Map;import java.util.Iterator;import org.zkoss.util.CollectionsX;import org.zkoss.zk.ui.WebApp;import org.zkoss.zk.ui.RichletConfig;/** * An implementation of {@link RichletConfig}. * * @author tomyeh */public class RichletConfigImpl implements RichletConfig { private final WebApp _wapp; private final Map _params; /** * @param wapp the {@link WebApp} that this config belongs to (never null). * @param params the initail parameters. Empty is assumed if null. */ public RichletConfigImpl(WebApp wapp, Map params) { if (wapp == null) throw new IllegalArgumentException("null"); _wapp = wapp; _params = params == null || params.isEmpty() ? null: params; } //RichletConfig// public WebApp getWebApp() { return _wapp; } public String getInitParameter(String name) { return _params != null ? (String)_params.get(name): null; } public Iterator getInitParameterNames() { return _params != null ? _params.keySet().iterator(): CollectionsX.EMPTY_ITERATOR; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -