01: package hero.xpdl;
02:
03: import java.util.List;
04:
05: /**
06: * This class defines the interface for all J2EE 1.4 Schemas
07: * @author Florent Benoit
08: */
09: public interface Schemas {
10:
11: /**
12: * Gets the URLs of the local schemas
13: * @return the URLs of the local schemas
14: */
15: List getlocalSchemas();
16:
17: }
|