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


Java ColorConstants.black方法代碼示例

本文整理匯總了Java中org.eclipse.draw2d.ColorConstants.black方法的典型用法代碼示例。如果您正苦於以下問題:Java ColorConstants.black方法的具體用法?Java ColorConstants.black怎麽用?Java ColorConstants.black使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.eclipse.draw2d.ColorConstants的用法示例。


在下文中一共展示了ColorConstants.black方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getBorderColor

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
@Override
public Color getBorderColor(Object entity) {
    if (entity instanceof PgSchema){
        return ColorConstants.black;
    }else{
        return ColorConstants.lightGray;
    }
}
 
開發者ID:pgcodekeeper,項目名稱:pgcodekeeper,代碼行數:9,代碼來源:DepcyGraphLabelProvider.java

示例2: getForegroundColour

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
@Override
public Color getForegroundColour(Object entity) {
    if (entity instanceof PgSchema){
        return ColorConstants.black;
    }else{
        return colorDBlue;
    }
}
 
開發者ID:pgcodekeeper,項目名稱:pgcodekeeper,代碼行數:9,代碼來源:DepcyGraphLabelProvider.java

示例3: decideColor

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
private void decideColor(final int[] color) {
    if (color != null) {
        final int sum = color[0] + color[1] + color[2];

        if (sum > 255) {
            foregroundColor = ColorConstants.black;
        } else {
            foregroundColor = ColorConstants.white;
        }
    }
}
 
開發者ID:roundrop,項目名稱:ermasterr,代碼行數:12,代碼來源:ModelPropertiesFigure.java

示例4: decideColor

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
private void decideColor(int[] color) {
	if (color != null) {
		int sum = color[0] + color[1] + color[2];

		if (sum > 255) {
			this.foregroundColor = ColorConstants.black;
		} else {
			this.foregroundColor = ColorConstants.white;
		}
	}
}
 
開發者ID:kozake,項目名稱:ermaster-k,代碼行數:12,代碼來源:ModelPropertiesFigure.java

示例5: decideColor

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
private void decideColor(int[] color) {
    if (color != null) {
        final int sum = color[0] + color[1] + color[2];
        if (sum > 255) {
            this.foregroundColor = ColorConstants.black;
        } else {
            this.foregroundColor = ColorConstants.white;
        }
    }
}
 
開發者ID:dbflute-session,項目名稱:erflute,代碼行數:11,代碼來源:ModelPropertiesFigure.java

示例6: getColor

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
@Override
public Color getColor(Object rel) {
	return ColorConstants.black;
}
 
開發者ID:andre-santos-pt,項目名稱:pandionj,代碼行數:5,代碼來源:FigureProvider.java

示例7: getForeground

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
@Override
public Color getForeground() {
	if (getValue() == null)
		return ColorConstants.lightGray;
	return ColorConstants.black;
}
 
開發者ID:OpenSoftwareSolutions,項目名稱:PDFReporter-Studio,代碼行數:7,代碼來源:MTitleCell.java

示例8: getForeground

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
@Override
public Color getForeground() {
	return ColorConstants.black;
}
 
開發者ID:OpenSoftwareSolutions,項目名稱:PDFReporter-Studio,代碼行數:5,代碼來源:MCell.java

示例9: TemplateBorder

import org.eclipse.draw2d.ColorConstants; //導入方法依賴的package包/類
/**
 * 
 * @param lineWidth
 *          width of the border
 * @param lineStyle
 *          style of the border
 * @param lineColor
 *          color of the border (if null is set to black)
 */
public TemplateBorder(Float lineWidth, LineStyleEnum lineStyle, RGB lineColor) {
	this.lineStyle = lineStyle;
	this.lineWidth = lineWidth;
	if (lineColor != null)
		this.color = SWTResourceManager.getColor(lineColor);
	else
		this.color = ColorConstants.black;
}
 
開發者ID:OpenSoftwareSolutions,項目名稱:PDFReporter-Studio,代碼行數:18,代碼來源:TemplateBorder.java


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