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


Java SimplePanel.ensureDebugId方法代碼示例

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


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

示例1: createIconWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create icon wrapper that contains an icon.
 *
 * @return {@link SimplePanel} as icon wrapper
 */
private SimplePanel createIconWidget() {
  SimplePanel iconWrapper = new SimplePanel();
  iconWrapper.setStyleName(resources.notificationCss().notificationPopupIconWrapper());
  iconWrapper.ensureDebugId(ICON_DBG_ID + notification.getId());
  return iconWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:12,代碼來源:NotificationPopup.java

示例2: createCloseWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create close icon widget that contains an close notification icon.
 *
 * @return {@link SimplePanel} as close icon wrapper
 */
private SimplePanel createCloseWidget() {
  SimplePanel closeWrapper = new SimplePanel();
  SVGImage closeImage = new SVGImage(resources.closeIcon());
  closeImage.addClickHandler(
      new ClickHandler() {
        @Override
        public void onClick(ClickEvent event) {
          delegate.onClose(notification);
        }
      });
  closeWrapper.add(closeImage);
  closeWrapper.setStyleName(resources.notificationCss().notificationPopupCloseButtonWrapper());
  closeWrapper.ensureDebugId(CLOSE_ICON_DBG_ID + notification.getId());
  return closeWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:21,代碼來源:NotificationPopup.java

示例3: createTitleWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create title widget that contains notification title.
 *
 * @return {@link SimplePanel} as title wrapper
 */
private SimplePanel createTitleWidget() {
  SimplePanel titleWrapper = new SimplePanel();
  Label titleLabel = new Label();
  titleWrapper.add(titleLabel);
  titleWrapper.setStyleName(resources.notificationCss().notificationPopupTitleWrapper());
  titleWrapper.ensureDebugId(TITLE_DBG_ID + notification.getId());
  return titleWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:14,代碼來源:NotificationPopup.java

示例4: createIconWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create icon wrapper that contains an icon.
 *
 * @return {@link SimplePanel} as icon wrapper
 */
private SimplePanel createIconWidget() {
  SimplePanel iconWrapper = new SimplePanel();
  iconWrapper.setStyleName(resources.notificationCss().notificationIconWrapper());
  iconWrapper.ensureDebugId(ICON_DBG_ID + notification.getId());
  return iconWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:12,代碼來源:NotificationContainerItem.java

示例5: createContentWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create message widget that contains notification message.
 *
 * @return {@link SimplePanel} as message wrapper
 */
private SimplePanel createContentWidget() {
  SimplePanel messageWrapper = new SimplePanel();
  Label messageLabel = new Label();
  messageWrapper.add(messageLabel);
  messageWrapper.setStyleName(resources.notificationCss().notificationMessageWrapper());
  messageWrapper.ensureDebugId(MESSAGE_WRAPPER_DBG_ID + notification.getId());
  return messageWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:14,代碼來源:NotificationContainerItem.java

示例6: createContentWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create message widget that contains notification message.
 *
 * @return {@link SimplePanel} as message wrapper
 */
private SimplePanel createContentWidget() {
  SimplePanel messageWrapper = new SimplePanel();
  Label messageLabel = new Label();
  messageWrapper.add(messageLabel);
  messageWrapper.setStyleName(resources.notificationCss().notificationPopupMessageWrapper());
  messageWrapper.ensureDebugId(MESSAGE_WRAPPER_DBG_ID + notification.getId());
  return messageWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:14,代碼來源:NotificationPopup.java

示例7: createTitleWidget

import com.google.gwt.user.client.ui.SimplePanel; //導入方法依賴的package包/類
/**
 * Create title widget that contains notification title.
 *
 * @return {@link SimplePanel} as title wrapper
 */
private SimplePanel createTitleWidget() {
  SimplePanel titleWrapper = new SimplePanel();
  Label titleLabel = new Label();
  titleWrapper.add(titleLabel);
  titleWrapper.setStyleName(resources.notificationCss().notificationTitleWrapper());
  titleWrapper.ensureDebugId(TITLE_DBG_ID + notification.getId());
  return titleWrapper;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:14,代碼來源:NotificationContainerItem.java


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