1 12 13 package com.sun.org.apache.xerces.internal.dom3.as; 14 15 import org.w3c.dom.DOMException ; 16 17 24 public interface DocumentAS { 25 37 public ASModel getActiveASModel(); 38 50 public void setActiveASModel(ASModel activeASModel); 51 52 57 public ASObjectList getBoundASModels(); 58 63 public void setBoundASModels(ASObjectList boundASModels); 64 65 69 public ASModel getInternalAS(); 70 71 77 public void setInternalAS(ASModel as); 78 79 87 public void addAS(ASModel as); 88 89 95 public void removeAS(ASModel as); 96 97 105 public ASElementDeclaration getElementDeclaration() 106 throws DOMException ; 107 108 113 public void validate() 114 throws DOMASException; 115 116 } 117 | Popular Tags |