mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
XmlDocument changes now send XML events
This commit is contained in:
@@ -75,8 +75,8 @@ public class XmlTagValueImpl implements XmlTagValue{
|
||||
myTag.deleteChildRange(myElements[0], myElements[myElements.length - 1]);
|
||||
}
|
||||
if(value != null && value.length() > 0) {
|
||||
final XmlText displayText = myTag.getManager().getElementFactory().createDisplayText(" ");
|
||||
myTag.add(displayText);
|
||||
XmlText displayText = myTag.getManager().getElementFactory().createDisplayText(" ");
|
||||
displayText = (XmlText)myTag.add(displayText);
|
||||
displayText.setValue(value);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user