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

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

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

Element.setPropertyInt介绍

[英]Sets an integer property on this element.
[中]设置此元素的整数属性。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets the amount of padding to be added around all cells.
  3. *
  4. * @param padding the cell padding, in pixels
  5. */
  6. public void setCellPadding(int padding) {
  7. tableElem.setPropertyInt("cellPadding", padding);
  8. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets the amount of spacing between this panel's cells.
  3. *
  4. * @param spacing the inter-cell spacing, in pixels
  5. */
  6. public void setSpacing(int spacing) {
  7. this.spacing = spacing;
  8. table.setPropertyInt("cellSpacing", spacing);
  9. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets the amount of spacing to be added around all cells.
  3. *
  4. * @param spacing the cell spacing, in pixels
  5. */
  6. public void setCellSpacing(int spacing) {
  7. tableElem.setPropertyInt("cellSpacing", spacing);
  8. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets an int property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param prop the name of the property to be set
  6. * @param value the new property value as an int
  7. * @deprecated Use {@link Element#setPropertyInt(String, int)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementPropertyInt(Element elem, String prop, int value) {
  11. elem.setPropertyInt(prop, value);
  12. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets an integer property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param attr the name of the property to be set
  6. * @param value the property's new integer value
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#setPropertyInt(String, int)} instead.
  9. */
  10. @Deprecated
  11. public static void setIntAttribute(Element elem, String attr, int value) {
  12. elem.setPropertyInt(attr, value);
  13. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Creates an empty stack panel.
  3. */
  4. public StackPanel() {
  5. Element table = DOM.createTable();
  6. setElement(table);
  7. body = DOM.createTBody();
  8. DOM.appendChild(table, body);
  9. table.setPropertyInt("cellSpacing", 0);
  10. table.setPropertyInt("cellPadding", 0);
  11. DOM.sinkEvents(table, Event.ONCLICK);
  12. setStyleName(DEFAULT_STYLENAME);
  13. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. Element createHeaderElem() {
  3. // Create the table
  4. Element table = DOM.createTable();
  5. Element tbody = DOM.createTBody();
  6. DOM.appendChild(table, tbody);
  7. table.getStyle().setProperty("width", "100%");
  8. table.setPropertyInt("cellSpacing", 0);
  9. table.setPropertyInt("cellPadding", 0);
  10. // Add the decorated rows
  11. for (int i = 0; i < DEFAULT_ROW_STYLENAMES.length; i++) {
  12. DOM.appendChild(tbody, DecoratorPanel.createTR(DEFAULT_ROW_STYLENAMES[i]));
  13. }
  14. // Return the table
  15. return table;
  16. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. private void updateIndicesFrom(int beforeIndex) {
  2. for (int i = beforeIndex, c = getWidgetCount(); i < c; ++i) {
  3. Element childTR = DOM.getChild(body, i * 2);
  4. Element childTD = DOM.getFirstChild(childTR);
  5. childTD.setPropertyInt("__index", i);
  6. // Update the special style on the first element
  7. if (beforeIndex == 0) {
  8. setStyleName(childTD, DEFAULT_ITEM_STYLENAME + "-first", true);
  9. } else {
  10. setStyleName(childTD, DEFAULT_ITEM_STYLENAME + "-first", false);
  11. }
  12. }
  13. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Creates a new panel using the specified style names to apply to each row.
  3. * Each row will contain three cells (Left, Center, and Right). The Center
  4. * cell in the containerIndex row will contain the {@link Widget}.
  5. *
  6. * @param rowStyles an array of style names to apply to each row
  7. * @param containerIndex the index of the container row
  8. */
  9. DecoratorPanel(String[] rowStyles, int containerIndex) {
  10. super(DOM.createTable());
  11. // Add a tbody
  12. Element table = getElement();
  13. tbody = DOM.createTBody();
  14. DOM.appendChild(table, tbody);
  15. table.setPropertyInt("cellSpacing", 0);
  16. table.setPropertyInt("cellPadding", 0);
  17. // Add each row
  18. for (int i = 0; i < rowStyles.length; i++) {
  19. Element row = createTR(rowStyles[i]);
  20. DOM.appendChild(tbody, row);
  21. if (i == containerIndex) {
  22. containerElem = DOM.getFirstChild(DOM.getChild(row, 1));
  23. }
  24. }
  25. // Set the overall style name
  26. setStyleName(DEFAULT_STYLENAME);
  27. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets the amount of spacing to be added around all cells.
  3. *
  4. * @param spacing the cell spacing, in pixels
  5. */
  6. public void setCellSpacing(int spacing) {
  7. tableElem.setPropertyInt("cellSpacing", spacing);
  8. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets the amount of padding to be added around all cells.
  3. *
  4. * @param padding the cell padding, in pixels
  5. */
  6. public void setCellPadding(int padding) {
  7. tableElem.setPropertyInt("cellPadding", padding);
  8. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Sets the amount of spacing between this panel's cells.
  3. *
  4. * @param spacing the inter-cell spacing, in pixels
  5. */
  6. public void setSpacing(int spacing) {
  7. this.spacing = spacing;
  8. table.setPropertyInt("cellSpacing", spacing);
  9. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Sets the amount of spacing to be added around all cells.
  3. *
  4. * @param spacing the cell spacing, in pixels
  5. */
  6. public void setCellSpacing(int spacing) {
  7. tableElem.setPropertyInt("cellSpacing", spacing);
  8. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets the amount of spacing between this panel's cells.
  3. *
  4. * @param spacing the inter-cell spacing, in pixels
  5. */
  6. public void setSpacing(int spacing) {
  7. this.spacing = spacing;
  8. table.setPropertyInt("cellSpacing", spacing);
  9. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets an int property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param prop the name of the property to be set
  6. * @param value the new property value as an int
  7. * @deprecated Use {@link Element#setPropertyInt(String, int)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementPropertyInt(Element elem, String prop, int value) {
  11. elem.setPropertyInt(prop, value);
  12. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Sets an int property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param prop the name of the property to be set
  6. * @param value the new property value as an int
  7. * @deprecated Use {@link Element#setPropertyInt(String, int)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementPropertyInt(Element elem, String prop, int value) {
  11. elem.setPropertyInt(prop, value);
  12. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. DOM.insertChild(rows[northRow].tr, td, rows[northRow].center);
  2. DOM.appendChild(td, child.getElement());
  3. td.setPropertyInt("colSpan", logicalRightCol - logicalLeftCol + 1);
  4. ++northRow;
  5. } else if (layout.direction == SOUTH) {
  6. DOM.insertChild(rows[southRow].tr, td, rows[southRow].center);
  7. DOM.appendChild(td, child.getElement());
  8. td.setPropertyInt("colSpan", logicalRightCol - logicalLeftCol + 1);
  9. --southRow;
  10. } else if (layout.direction == CENTER) {
  11. DOM.insertChild(row.tr, td, row.center++);
  12. DOM.appendChild(td, child.getElement());
  13. td.setPropertyInt("rowSpan", southRow - northRow + 1);
  14. ++logicalLeftCol;
  15. } else if (shouldAddToLogicalRightOfTable(layout.direction)) {
  16. DOM.insertChild(row.tr, td, row.center);
  17. DOM.appendChild(td, child.getElement());
  18. td.setPropertyInt("rowSpan", southRow - northRow + 1);
  19. --logicalRightCol;

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. tdh.setPropertyInt("__owner", hashCode());
  2. tdh.setPropertyString("height", "1px");

代码示例来源:origin: com.github.gwtmaterialdesign/gwt-material

  1. /**
  2. * Set the given Integer value to the attribute of the range element.
  3. */
  4. protected void setIntToRangeElement(String attribute, Integer val) {
  5. Element ele = $(rangeInputElement).asElement();
  6. if (ele != null) {
  7. ele.setPropertyInt(attribute, val);
  8. }
  9. }

代码示例来源:origin: GwtMaterialDesign/gwt-material

  1. /**
  2. * Set the given Integer value to the attribute of the range element.
  3. */
  4. protected void setIntToRangeElement(String attribute, Integer val) {
  5. Element ele = $(rangeInputElement).asElement();
  6. if (ele != null) {
  7. ele.setPropertyInt(attribute, val);
  8. }
  9. }

相关文章

Element类方法