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

org.sat4j.csp.xml.Variable Maven / Gradle / Ivy

The newest version!
package org.sat4j.csp.xml;
import org.xml.sax.Attributes;

import static org.sat4j.csp.xml.TagNames.*;

class Variable extends Element {

    public Variable(ICSPCallback out,String tagName) {
		super(out,tagName);
	}

	public void startElement(Attributes att) {
		getCB().addVariable(att.getValue(NAME), att.getValue(DOMAIN));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy