1 19 package org.netbeans.modules.xml.core.text; 20 21 import org.netbeans.modules.xml.core.*; 22 import org.netbeans.modules.xml.core.sync.*; 23 24 31 public class EntityTextRepresentation extends TextRepresentation { 32 33 34 public EntityTextRepresentation (TextEditorSupport editor, Synchronizator sync) { 35 super (editor, sync); 36 } 37 38 41 public void update (Object change) { 42 43 if (change instanceof String ) { 44 String update = (String ) change; 45 updateText (update); 46 } 47 } 48 49 50 private void updateText (Object source) { 51 } 53 54 57 public boolean isModified () { 58 return false; } 60 61 } 62 | Popular Tags |