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

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

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

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

class Variables extends Element {

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

	public void startElement(Attributes att) {
		getCB().beginVariablesSection(
				Integer.parseInt(att.getValue(NB_VARIABLES)));
	}

	public void endElement() {
		getCB().endVariablesSection();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy