1 package org.apache.slide.projector.value;2 3 import org.jdom.DocType;4 import org.jdom.Element;5 6 public interface XMLValue extends Value {7 public final static String CONTENT_TYPE = "text/xml";8 9 public DocType getDocumentType();10 11 public Element getRootElement();12 }