01: package de.schlund.pfixcore.util;
02:
03: import org.w3c.dom.Element;
04:
05: import de.schlund.pfixxml.targets.AuxDependencyInclude;
06:
07: public interface IDumpText {
08: void generateList(String depend) throws Exception;
09:
10: void addRootNodeAtributes(Element root);
11:
12: boolean includePartOK(AuxDependencyInclude aux);
13:
14: String retrieveTheme(AuxDependencyInclude aux);
15: }
|