Package io.mola.galimatias

Examples of io.mola.galimatias.NameValue


    @Override
    public List<PotentialAssignment> getValueSources(ParameterSignature sig) {
        List<PotentialAssignment> res = new ArrayList<PotentialAssignment>();
        for (final String name : values) {
            for (final String value : values) {
                final NameValue nameValue = new NameValue(name, value);
                res.add(PotentialAssignment.forValue(nameValue.toString(), nameValue));
            }
        }
        return res;
    }
View Full Code Here

TOP

Related Classes of io.mola.galimatias.NameValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.