This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 135378
Collapse All | Expand All

(-)a/xml.text/src/org/netbeans/modules/xml/text/completion/EntityRefResultItem.java (-1 / +1 lines)
Lines 58-64 class EntityRefResultItem extends XMLRes Link Here
58
    }
58
    }
59
59
60
    public String getReplacementText(int modifiers) {
60
    public String getReplacementText(int modifiers) {
61
        return super.getReplacementText(modifiers) + ';';
61
        return "&" + super.getReplacementText(modifiers) + ';';
62
    }
62
    }
63
    
63
    
64
    Color getPaintColor() { return Color.blue; }
64
    Color getPaintColor() { return Color.blue; }

Return to bug 135378