本文整理匯總了Java中org.eclipse.jface.text.rules.Token.setData方法的典型用法代碼示例。如果您正苦於以下問題:Java Token.setData方法的具體用法?Java Token.setData怎麽用?Java Token.setData使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.jface.text.rules.Token
的用法示例。
在下文中一共展示了Token.setData方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: adaptToColorChange
import org.eclipse.jface.text.rules.Token; //導入方法依賴的package包/類
private void adaptToColorChange(Token token, PropertyChangeEvent event) {
RGB rgb = null;
Object value = event.getNewValue();
if (value instanceof RGB) {
rgb = (RGB) value;
} else if (value instanceof String) {
rgb = StringConverter.asRGB((String) value);
}
if (rgb != null) {
String property = event.getProperty();
Color color = colorMgr.getColor(property);
if (!rgb.equals(color.getRGB())) {
colorMgr.setValue(property, rgb);
color = colorMgr.getColor(property);
}
Object data = token.getData();
if (data instanceof TextAttribute) {
TextAttribute oldAttr = (TextAttribute) data;
token.setData(new TextAttribute(color, oldAttr.getBackground(), oldAttr.getStyle()));
}
}
}
示例2: adaptToStyleChange
import org.eclipse.jface.text.rules.Token; //導入方法依賴的package包/類
private void adaptToStyleChange(Token token, PropertyChangeEvent event, int styleAttribute) {
boolean eventValue = false;
Object value = event.getNewValue();
if (value instanceof Boolean)
eventValue = ((Boolean) value).booleanValue();
else if (IPreferenceStore.TRUE.equals(value)) eventValue = true;
Object data = token.getData();
if (data instanceof TextAttribute) {
TextAttribute oldAttr = (TextAttribute) data;
boolean activeValue = (oldAttr.getStyle() & styleAttribute) == styleAttribute;
if (activeValue != eventValue)
token.setData(new TextAttribute(oldAttr.getForeground(), oldAttr.getBackground(),
eventValue ? oldAttr.getStyle() | styleAttribute : oldAttr.getStyle() & ~styleAttribute));
}
}
示例3: addToken
import org.eclipse.jface.text.rules.Token; //導入方法依賴的package包/類
private void addToken(String colorKey, String boldKey, String italicKey, String strikeKey, String underlineKey) {
if (colorKey != null) {
PreferenceConverter.getColor(store, colorKey); // pre-loads the color manager
TextAttribute ta = createTextAttribute(colorKey, boldKey, italicKey, strikeKey, underlineKey);
if (!needsLazyLoading) {
tokenMap.put(colorKey, new Token(ta));
} else {
Token token = tokenMap.get(colorKey);
if (token != null) {
token.setData(ta);
}
}
}
}