org.zkoss.web.servlet.xel.AttributesMap Maven / Gradle / Ivy
/* AttributesMap.java
Purpose:
Description:
History:
Tue Dec 6 22:40:23 2005, Created by tomyeh
Copyright (C) 2005 Potix Corporation. All Rights Reserved.
{{IS_RIGHT
This program is distributed under LGPL Version 2.1 in the hope that
it will be useful, but WITHOUT ANY WARRANTY.
}}IS_RIGHT
*/
package org.zkoss.web.servlet.xel;
import static org.zkoss.lang.Generics.cast;
import java.util.AbstractSet;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
/**
* A skeletal implementation for Map to wrap something with enumeration of
* attributes, which must be String.
*
* It is mainly used to implement sessionScope and requestScope in EL.
*
* @author tomyeh
* @since 3.0.0
*/
public abstract class AttributesMap extends StringKeysMap