Example usage for org.apache.commons.collections.map UnmodifiableEntrySet decorate

List of usage examples for org.apache.commons.collections.map UnmodifiableEntrySet decorate

Introduction

In this page you can find the example usage for org.apache.commons.collections.map UnmodifiableEntrySet decorate.

Prototype

public static Set decorate(Set set) 

Source Link

Document

Factory method to create an unmodifiable set of Map Entry objects.

Usage

From source file:org.apache.cocoon.el.impl.objectmodel.UnmodifiableMultiMap.java

public Set entrySet() {
    Set set = super.entrySet();
    return UnmodifiableEntrySet.decorate(set);
}