All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nedap.archie.rules.evaluation.VariableMap Maven / Gradle / Ivy

Go to download

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy