com.google.gwt.dom.client.Element.hasChildNodes()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(277)

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

Element.hasChildNodes介绍

暂无

代码示例

代码示例来源:origin: com.extjs/gxt

  1. protected boolean isRowRendered(int index) {
  2. Element row = getRow(index);
  3. return row != null && row.hasChildNodes();
  4. }

代码示例来源:origin: org.eagle-i/eagle-i-datatools-sweet-gwt

  1. /**
  2. * Need to do some additional clean up to really clear the list
  3. */
  4. public void clear() {
  5. super.clear();
  6. // remove the option group elements
  7. Element elm = getElement();
  8. while (elm.hasChildNodes()) {
  9. elm.removeChild(elm.getFirstChild());
  10. }
  11. groupMap.clear();
  12. }

代码示例来源:origin: com.extjs/gxt

  1. /**
  2. * Returns the grid's <TD> HtmlElement at the specified coordinates.
  3. *
  4. * @param row the row index in which to find the cell
  5. * @param col the column index of the cell
  6. * @return the <TD> at the specified coordinates
  7. */
  8. public Element getCell(int row, int col) {
  9. // ROW DIV TABLE TR TD
  10. Element rowEl = getRow(row);
  11. return (Element) ((rowEl != null && rowEl.hasChildNodes())
  12. ? rowEl.getFirstChild().getFirstChild().getFirstChild().getChildNodes().getItem(col) : null);
  13. }

代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui

  1. public static void continueStartup() {
  2. // init handlers before throwing events
  3. SosDataManager.getDataManager();
  4. new SOSController();
  5. if (ClientUtils.isSesEnabled()) {
  6. new SesController();
  7. }
  8. View.getView();
  9. Element element = Document.get().getElementById("loadingWrapper");
  10. while (element.hasChildNodes()) {
  11. element.removeChild(element.getFirstChild());
  12. }
  13. Application.finishStartup();
  14. }

代码示例来源:origin: org.eclipse.che.core/che-core-ide-ui

  1. private void ensureFocusElement() {
  2. if (focusEl != null) {
  3. focusEl.removeFromParent();
  4. }
  5. focusEl = getElement().appendChild(focusImpl.createFocusable());
  6. focusEl.addClassName(treeStyles.treeStylesCss().noFocusOutline());
  7. if (focusEl.hasChildNodes()) {
  8. focusEl.getFirstChildElement().addClassName(treeStyles.treeStylesCss().noFocusOutline());
  9. Style focusElStyle = focusEl.getFirstChildElement().getStyle();
  10. focusElStyle.setBorderWidth(0, Style.Unit.PX);
  11. focusElStyle.setFontSize(1, Style.Unit.PX);
  12. focusElStyle.setPropertyPx("lineHeight", 1);
  13. }
  14. focusEl.getStyle().setLeft(0, Style.Unit.PX);
  15. focusEl.getStyle().setTop(0, Style.Unit.PX);
  16. focusEl.getStyle().setPosition(Style.Position.ABSOLUTE);
  17. // subscribe for Event.FOCUSEVENTS
  18. int bits =
  19. DOM.getEventsSunk(
  20. (Element) focusEl.cast()); // do not remove redundant cast, GWT tests will fail
  21. DOM.sinkEvents((Element) focusEl.cast(), bits | Event.FOCUSEVENTS);
  22. }

代码示例来源:origin: org.eclipse.che.core/che-core-ide-ui

  1. for (int i = 0; i < list.size(); i++) {
  2. Element cellElement = table.getCellFormatter().getElement(i, 0);
  3. if (cellElement.hasChildNodes()) {
  4. hasIcons = true;
  5. break;

相关文章

Element类方法