1 12 13 package org.apache.xerces.dom3.as; 14 15 24 public interface ASEntityDeclaration extends ASObject { 25 29 public static final short INTERNAL_ENTITY = 1; 30 33 public static final short EXTERNAL_ENTITY = 2; 34 35 38 public short getEntityType(); 39 42 public void setEntityType(short entityType); 43 44 49 public String getEntityValue(); 50 55 public void setEntityValue(String entityValue); 56 57 61 public String getSystemId(); 62 66 public void setSystemId(String systemId); 67 68 72 public String getPublicId(); 73 77 public void setPublicId(String publicId); 78 79 } 80 | Popular Tags |