Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c48b75374e0300f609fcf0273a11acc4454d5fb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2011 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.equinox.metatype.impl;

import org.eclipse.equinox.metatype.Extendable;

import java.util.*;

public class ExtendableHelper implements Extendable {
	private final Map<String, Map<String, String>> attributes;

	@SuppressWarnings("unchecked")
	public ExtendableHelper() {
		this(Collections.EMPTY_MAP);
	}

	public ExtendableHelper(Map<String, Map<String, String>> attributes) {
		if (attributes == null)
			throw new NullPointerException();
		this.attributes = attributes;
	}

	public Map<String, String> getExtensionAttributes(String schema) {
		return Collections.unmodifiableMap(attributes.get(schema));
	}

	public Set<String> getExtensionUris() {
		return Collections.unmodifiableSet(attributes.keySet());
	}

}

Back to the top