blob: 2698c29e83c59fe80e77e2d68e9b004b2e151d59 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.internal.context;
import java.util.*;
import org.eclipse.help.*;
/**
* Holds mapping of short contextId to IContext
*/
class PluginContexts {
private Map map = new HashMap();
public void put(String shortId, IContext context) {
map.put(shortId, context);
}
public IContext get(String shortId) {
return (IContext) map.get(shortId);
}
}