| Home >> All >> javax >> ide >> model >> [ xml Javadoc ] |
Source code: javax/ide/model/xml/XMLModel.java
1 package javax.ide.model.xml; 2 import javax.ide.model.Transaction; 3 4 /** 5 * The <CODE>XMLModel</CODE> class. Encapsulates the 6 * {@link org.w3c.dom.Document} interface to support 7 * reading from and writing into the model. 8 */ 9 public interface XMLModel extends Transaction 10 { 11 /** 12 * Gets the {@link org.w3c.dom.Document}. 13 * 14 * @return The dom document. 15 */ 16 public org.w3c.dom.Document getDOMDocument(); 17 }