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

📄 imagemap.java

📁 一个java写的加密算法
💻 JAVA
字号:
/* * Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. * Use is subject to license terms. */package components.model;import components.components.AreaSelectedEvent;import javax.faces.context.FacesContext;import javax.faces.event.ActionEvent;import java.util.HashMap;import java.util.Locale;import java.util.Map;/** * ImageMap is the "backing file" class for the image map application. * It contains a method event handler that sets the locale from * information in the <code>AreaSelectedEvent</code> event. */public class ImageMap {    // ------------------------------------------------------ Instance Variables    /**     * <p>The locales to be selected for each hotspot, keyed by the     * alternate text for that area.</p>     */    private Map locales = null;    // ------------------------------------------------------------ Constructors    /**     * <p>Construct a new instance of this image map.</p>     */    public ImageMap() {        locales = new HashMap();        locales.put("NAmerica", Locale.ENGLISH);        locales.put("SAmerica", new Locale("es", "es"));        locales.put("Germany", Locale.GERMAN);        locales.put("Finland", new Locale("fi", "fi"));        locales.put("France", Locale.FRENCH);    }    /**     * <p>Select a new Locale based on this event.</p>     *     * @param actionEvent The {@link AreaSelectedEvent} that has occurred     */    public void processAreaSelected(ActionEvent actionEvent) {        AreaSelectedEvent event = (AreaSelectedEvent) actionEvent;        String current = event.getMapComponent().getCurrent();        FacesContext context = FacesContext.getCurrentInstance();        context.getViewRoot().setLocale((Locale) locales.get(current));    }    /**     * <p>Return an indication for navigation.  Application using this component,     * can refer to this method via an <code>action</code> expression in their     * page, and set up the "outcome" (success) in their navigation rule.     */    public String status() {        return "success";    }}

⌨️ 快捷键说明

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