本文整理了Java中org.eclipse.swt.graphics.Cursor.equals()
方法的一些代码示例,展示了Cursor.equals()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Cursor.equals()
方法的具体详情如下:
包路径:org.eclipse.swt.graphics.Cursor
类名称:Cursor
方法名:equals
[英]Compares the argument to the receiver, and returns true if they represent the same object using a class specific comparison.
[中]将参数与接收方进行比较,如果它们使用特定于类的比较表示相同对象,则返回true。
代码示例来源:origin: BiglySoftware/BiglyBT
@Override
public void dragStart(DragSourceEvent event) {
Cursor cursor = cHeaderArea.getCursor();
if (cursor != null
&& cursor.equals(event.display.getSystemCursor(SWT.CURSOR_SIZEWE))) {
event.doit = false;
return;
}
cHeaderArea.setCursor(null);
TableColumnCore tc = getTableColumnByOffset(event.x);
isHeaderDragging = tc != null;
if (isHeaderDragging) {
eventData = tc.getName();
}
//System.out.println("drag " + eventData);
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.ui.workbench
.getSystemCursor(SWT.CURSOR_WAIT);
if (waitCursor.equals(paneComposite.getCursor())) {
originalCursor = paneComposite.getCursor();
paneComposite.setCursor(waitCursor);
内容来源于网络,如有侵权,请联系作者删除!