1 package org.sat4j.csp.xml;
2 import org.xml.sax.Attributes;
3
4 class Presentation extends Element {
5
6 public Presentation(ICSPCallback out,String tagName) {
7 super(out,tagName);
8 }
9
10 public void startElement(Attributes att) {
11 getCB().beginInstance(att.getValue("name"));
12 }
13
14 }