1 19 package org.netbeans.modules.xml.text.completion; 20 21 import java.awt.Color ; 22 23 import org.netbeans.modules.xml.api.model.*; 24 25 31 class EntityRefResultItem extends XMLResultItem { 32 33 public EntityRefResultItem(GrammarResult res){ 34 super(res.getNodeName()); 35 selectionForeground = foreground = Color.red.darker(); 36 } 37 38 public String getReplacementText(int modifiers) { 39 return super.getReplacementText(modifiers) + ';'; 40 } 41 42 Color getPaintColor() { return Color.blue; } 43 } 44 | Popular Tags |