01: package com.bostechcorp.cbesb.common.util.xfm;
02:
03: import java.util.List;
04:
05: public interface IXsdReader {
06:
07: public List<String> getComplexTypeList();
08:
09: public List<String> getSimpleTypeList();
10:
11: public List<String> getElementList();
12:
13: public List<String> getRootElementList();
14: }
|