⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baserenderer.java

📁 一个java写的加密算法
💻 JAVA
字号:
/* * $Id: BaseRenderer.java,v 1.3 2004/11/14 07:33:14 tcfujii Exp $ *//* * Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. * Use is subject to license terms. */package components.renderkit;import javax.faces.component.UIComponent;import javax.faces.context.FacesContext;import javax.faces.render.Renderer;import java.io.IOException;import java.util.Iterator;import java.util.MissingResourceException;import java.util.ResourceBundle;/** * <p>Convenient base class for <code>Renderer</code> implementations.</p> */public abstract class BaseRenderer extends Renderer {    public static final String BUNDLE_ATTR = "com.sun.faces.bundle";    public String convertClientId(FacesContext context, String clientId) {        return clientId;    }    protected String getKeyAndLookupInBundle(FacesContext context,                                             UIComponent component,                                             String keyAttr)        throws MissingResourceException {        String key = null, bundleName = null;        ResourceBundle bundle = null;        key = (String) component.getAttributes().get(keyAttr);        bundleName = (String) component.getAttributes().get(BUNDLE_ATTR);        // if the bundleName is null for this component, it might have        // been set on the root component.        if (bundleName == null) {            UIComponent root = context.getViewRoot();            bundleName = (String) root.getAttributes().get(BUNDLE_ATTR);        }        // verify our component has the proper attributes for key and bundle.        if (null == key || null == bundleName) {            throw new MissingResourceException("Can't load JSTL classes",                                               bundleName, key);        }        // verify the required Class is loadable        // PENDING(edburns): Find a way to do this once per ServletContext.        if (null == Thread.currentThread().getContextClassLoader().            getResource("javax.servlet.jsp.jstl.fmt.LocalizationContext")) {            Object[] params = {                "javax.servlet.jsp.jstl.fmt.LocalizationContext"            };            throw new MissingResourceException("Can't load JSTL classes",                                               bundleName, key);        }        // verify there is a ResourceBundle in scoped namescape.        javax.servlet.jsp.jstl.fmt.LocalizationContext locCtx = null;        if (null == (locCtx = (javax.servlet.jsp.jstl.fmt.LocalizationContext)            (Util.getValueBinding(bundleName)).getValue(context)) ||            null == (bundle = locCtx.getResourceBundle())) {            throw new MissingResourceException("Can't load ResourceBundle ",                                               bundleName, key);        }        return bundle.getString(key);    }    protected void encodeRecursive(FacesContext context, UIComponent component)        throws IOException {        component.encodeBegin(context);        if (component.getRendersChildren()) {            component.encodeChildren(context);        } else {            Iterator kids = component.getChildren().iterator();            while (kids.hasNext()) {                UIComponent kid = (UIComponent) kids.next();                encodeRecursive(context, kid);            }        }        component.encodeEnd(context);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -