1 19 package org.netbeans.modules.xml.tax.cookies; 20 21 import org.xml.sax.*; 22 23 import org.netbeans.modules.xml.core.sync.*; 24 import org.netbeans.modules.xml.tax.cookies.TreeEditorCookieImpl; 25 26 31 public class DTDTreeRepresentation extends TreeRepresentation { 32 33 34 public DTDTreeRepresentation(TreeEditorCookieImpl editor, Synchronizator sync) { 35 super(editor, sync); 36 } 37 38 41 public void update(Object change) { 42 if (change instanceof InputSource) { 43 InputSource update = (InputSource) change; 44 editor.updateTree(change); 45 } 46 } 47 48 51 public boolean isModified() { 52 return false; 53 } 54 55 58 public Object getChange(Class type) { 59 return null; } 61 62 } 63 | Popular Tags |