01: package hero.xpdl;
02:
03: import java.util.Map;
04:
05: /**
06: * This class defines the interface for the Mapping between publicId and DTDs
07: * @author Florent Benoit
08: */
09: public interface DTDs {
10:
11: /**
12: * Gets the mapping between publicIds and DTDs
13: * @return the mapping between publicIds and DTDs
14: */
15: Map getMapping();
16:
17: }
|