Example usage for org.apache.commons.collections.map LinkedMap putAll

List of usage examples for org.apache.commons.collections.map LinkedMap putAll

Introduction

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

Prototype

public void putAll(Map map) 

Source Link

Document

Puts all the values from the specified map into this map.

Usage

From source file:org.apache.openjpa.kernel.QueryImpl.java

public LinkedMap getParameterTypes() {
    lock();/* w ww .  j  av a 2s. c o m*/
    try {
        LinkedMap wrap = new LinkedMap();
        wrap.putAll(compileForExecutor().getOrderedParameterTypes(_storeQuery));
        return wrap;
    } finally {
        unlock();
    }
}