本文整理汇总了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;
}
示例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();
}