1 21 package oracle.toplink.essentials.platform.xml; 23 24 25 import java.net.URL ; 27 28 32 public interface XMLSchemaReference { 33 public static final int COMPLEX_TYPE = 1; 34 public static final int SIMPLE_TYPE = 2; 35 public static final int ELEMENT = 3; 36 public static final int GROUP = 5; 37 38 43 public String getSchemaContext(); 44 45 51 public int getType(); 52 53 58 public URL getURL(); 59 } 60 | Popular Tags |