當前位置: 首頁>>代碼示例>>Java>>正文


Java Token.setData方法代碼示例

本文整理匯總了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()));
		}
	}
}
 
開發者ID:grosenberg,項目名稱:fluentmark,代碼行數:27,代碼來源:AbstractBufferedRuleBasedScanner.java

示例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));
	}
}
 
開發者ID:grosenberg,項目名稱:fluentmark,代碼行數:17,代碼來源:AbstractBufferedRuleBasedScanner.java

示例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);
			}
		}
	}
}
 
開發者ID:grosenberg,項目名稱:fluentmark,代碼行數:15,代碼來源:AbstractBufferedRuleBasedScanner.java


注:本文中的org.eclipse.jface.text.rules.Token.setData方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。