com.nedap.archie.rules.evaluation.VariableMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
tools that operate on the archie reference models and archetype object model
The newest version!
package com.nedap.archie.rules.evaluation;
import java.util.HashMap;
import java.util.Map;
/**
* Created by pieter.bos on 31/03/16.
*/
public class VariableMap {
private Map variables = new HashMap<>();
public void put(String name, ValueList valueList) {
variables.put(name, valueList);
}
public ValueList get(String name) {
return variables.get(name);
}
}