当前位置: 首页>>代码示例>>Java>>正文


Java Color.dispose方法代码示例

本文整理汇总了Java中org.eclipse.swt.graphics.Color.dispose方法的典型用法代码示例。如果您正苦于以下问题:Java Color.dispose方法的具体用法?Java Color.dispose怎么用?Java Color.dispose使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.swt.graphics.Color的用法示例。


在下文中一共展示了Color.dispose方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setRowColors

import org.eclipse.swt.graphics.Color; //导入方法依赖的package包/类
public boolean setRowColors(RGB c[]) {
    SWTAsync.assertGUI();
    boolean needRefresh = false;
    if (tableColors != null && tableColors.length != c.length) {
        for (Color tableColor : tableColors) {
            tableColor.dispose();
        }
        tableColors = null;
    }
    if (tableColors == null) {
        tableColors = new Color[c.length];
    }
    for (int x = 0; x < tableColors.length; x++) {
        if (tableColors[x] == null || !tableColors[x].getRGB().equals(c[x])) {
            tableColors[x] = PaintShop.newColor(c[x]);
            needRefresh = true;
        }
    }
    return needRefresh;
}
 
开发者ID:openaudible,项目名称:openaudible,代码行数:21,代码来源:EnumTable.java

示例2: disposeColors

import org.eclipse.swt.graphics.Color; //导入方法依赖的package包/类
/**
 * Dispose of all the cached {@link Color}'s.
 */
public static void disposeColors() {
	for (Color color : m_colorMap.values()) {
		color.dispose();
	}
	m_colorMap.clear();
}
 
开发者ID:fmcalcagno,项目名称:Sensors,代码行数:10,代码来源:SWTResourceManager.java


注:本文中的org.eclipse.swt.graphics.Color.dispose方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。