Skip to main content
summaryrefslogtreecommitdiffstats
blob: 00fd17791ae942b3598e110a385431f689b931b7 (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
/*
Copyright (c) 2008 Arno Haase.
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:
    Arno Haase - initial API and implementation
 */
package org.eclipse.xtend.backend;

import java.util.HashMap;
import java.util.Map;

import org.eclipse.xtend.backend.common.GlobalVarContext;


/**
 * 
 * @author Arno Haase (http://www.haase-consulting.com)
 */
final class GlobalVarContextImpl implements GlobalVarContext {
	private final Map<String, Object> _globalVars = new HashMap<String, Object> ();

	public Map<String, Object> getGlobalVars() {
		return _globalVars;
	}
}

Back to the top