org.eclipse.swt.widgets.DateTime.removeListener()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(150)

本文整理了Java中org.eclipse.swt.widgets.DateTime.removeListener()方法的一些代码示例,展示了DateTime.removeListener()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DateTime.removeListener()方法的具体详情如下:
包路径:org.eclipse.swt.widgets.DateTime
类名称:DateTime
方法名:removeListener

DateTime.removeListener介绍

暂无

代码示例

代码示例来源:origin: atdl4j/atdl4j

public void removeListener(Listener listener)
{
  if ( showMonthYear )
  {
    dateClock.removeListener( SWT.Selection, listener );
  }
  if ( showTime )
  {
    timeClock.removeListener( SWT.Selection, listener );
  }
}

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt

/**
 * Removes the listener from the collection of listeners who will be notified
 * when the control is selected by the user.
 *
 * @param listener the listener which should no longer be notified
 * @exception IllegalArgumentException
 *              <ul>
 *              <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
 *              </ul>
 * @exception SWTException
 *              <ul>
 *              <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *              <li>ERROR_THREAD_INVALID_ACCESS - if not called from the
 *              thread that created the receiver</li>
 *              </ul>
 * @see SelectionListener
 * @see #addSelectionListener
 */
public void removeSelectionListener( SelectionListener listener ) {
 checkWidget();
 if( listener == null ) {
  SWT.error( SWT.ERROR_NULL_ARGUMENT );
 }
 removeListener( SWT.Selection, listener );
 removeListener( SWT.DefaultSelection, listener );
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

void onDispose (Event event) {
  if (popupShell != null && !popupShell.isDisposed ()) {
    popupCalendar.removeListener (SWT.Dispose, popupListener);
    popupShell.dispose ();
  }
  Shell shell = getShell ();
  shell.removeListener (SWT.Deactivate, popupListener);
  Display display = getDisplay ();
  display.removeFilter (SWT.FocusIn, popupFilter);
  popupShell = null;
  popupCalendar = null;
  down = null;
  dateTimeString = null;
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

void onDispose (Event event) {
  if (popupShell != null && !popupShell.isDisposed ()) {
    popupCalendar.removeListener (SWT.Dispose, popupListener);
    popupShell.dispose ();
  }
  Shell shell = getShell ();
  shell.removeListener (SWT.Deactivate, popupListener);
  Display display = getDisplay ();
  display.removeFilter (SWT.FocusIn, popupFilter);
  popupShell = null;
  popupCalendar = null;
  down = null;
  dateTimeString = null;
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

void onDispose (Event event) {
  if (popupShell != null && !popupShell.isDisposed ()) {
    popupCalendar.removeListener (SWT.Dispose, popupListener);
    popupShell.dispose ();
  }
  Shell shell = getShell ();
  shell.removeListener (SWT.Deactivate, popupListener);
  Display display = getDisplay ();
  display.removeFilter (SWT.FocusIn, popupFilter);
  popupShell = null;
  popupCalendar = null;
  down = null;
  dateTimeString = null;
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

private void recreateCalendar () {
  int year = popupCalendar.getYear ();
  int month = popupCalendar.getMonth ();
  int day = popupCalendar.getDay ();
  popupCalendar.removeListener (SWT.Dispose, popupListener);
  popupShell.dispose ();
  popupShell = null;
  popupCalendar = null;
  createPopupShell (year, month, day);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

private void recreateCalendar () {
  int year = popupCalendar.getYear ();
  int month = popupCalendar.getMonth ();
  int day = popupCalendar.getDay ();
  popupCalendar.removeListener (SWT.Dispose, popupListener);
  popupShell.dispose ();
  popupShell = null;
  popupCalendar = null;
  createPopupShell (year, month, day);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

private void recreateCalendar () {
  int year = popupCalendar.getYear ();
  int month = popupCalendar.getMonth ();
  int day = popupCalendar.getDay ();
  popupCalendar.removeListener (SWT.Dispose, popupListener);
  popupShell.dispose ();
  popupShell = null;
  popupCalendar = null;
  createPopupShell (year, month, day);
}

相关文章

DateTime类方法