1 23 24 package org.objectweb.fractal.adl.xml; 25 26 import org.objectweb.fractal.adl.AbstractNode; 27 import org.xml.sax.Attributes ; 28 29 32 33 public abstract class XMLNode extends AbstractNode { 34 35 public XMLNode (final String type) { 36 super(type); 37 } 38 39 public abstract void xmlSetAttributes (Attributes xmlAttrs); 40 41 public abstract void xmlAddNode (String xmlName, XMLNode node); 42 } 43 | Popular Tags |