1 19 package org.netbeans.tax; 20 21 import org.netbeans.tax.event.TreeEventManager; 22 23 28 public interface TreeDocumentRoot { 29 30 32 public TreeEventManager getRootEventManager (); 33 34 35 37 public String getVersion (); 38 39 43 public void setVersion (String version) throws ReadOnlyException, InvalidArgumentException; 44 45 47 public String getEncoding (); 48 49 53 public void setEncoding (String encoding) throws ReadOnlyException, InvalidArgumentException; 54 55 56 58 public TreeObjectList getChildNodes (); 59 60 } 61 | Popular Tags |