1 12 13 package org.apache.xerces.dom3.as; 14 15 22 public interface ASElementDeclaration extends ASObject { 23 27 public static final short EMPTY_CONTENTTYPE = 1; 28 31 public static final short ANY_CONTENTTYPE = 2; 32 37 public static final short MIXED_CONTENTTYPE = 3; 38 41 public static final short ELEMENTS_CONTENTTYPE = 4; 42 43 50 public boolean getStrictMixedContent(); 51 58 public void setStrictMixedContent(boolean strictMixedContent); 59 60 63 public ASDataType getElementType(); 64 67 public void setElementType(ASDataType elementType); 68 69 75 public boolean getIsPCDataOnly(); 76 82 public void setIsPCDataOnly(boolean isPCDataOnly); 83 84 89 public short getContentType(); 90 95 public void setContentType(short contentType); 96 97 101 public String getSystemId(); 102 106 public void setSystemId(String systemId); 107 108 111 public ASContentModel getAsCM(); 112 115 public void setAsCM(ASContentModel asCM); 116 117 122 public ASNamedObjectMap getASAttributeDecls(); 123 128 public void setASAttributeDecls(ASNamedObjectMap ASAttributeDecls); 129 130 137 public void addASAttributeDecl(ASAttributeDeclaration attributeDecl); 138 139 148 public ASAttributeDeclaration removeASAttributeDecl(ASAttributeDeclaration attributeDecl); 149 150 } 151 | Popular Tags |