当前位置: 首页>>代码示例>>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;未经允许,请勿转载。