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

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

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

Element.getPropertyString介绍

[英]Gets a property from this element.
[中]从该元素获取属性。

代码示例

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

  1. public String getHTML() {
  2. return elem.getPropertyString("value");
  3. }

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

  1. public String getText() {
  2. return elem.getPropertyString("value");
  3. }

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

  1. /**
  2. * Gets any named property from an element, as a string.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param attr the name of the property
  6. * @return the property's value
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#getPropertyString(String)} instead.
  9. */
  10. @Deprecated
  11. public static String getAttribute(Element elem, String attr) {
  12. return elem.getPropertyString(attr);
  13. }

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

  1. /**
  2. * Gets any named property from an element, as a string.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param prop the name of the property
  6. * @return the property's value
  7. * @deprecated Use {@link Element#getProperty(String)} instead.
  8. */
  9. @Deprecated
  10. public static String getElementProperty(Element elem, String prop) {
  11. return elem.getPropertyString(prop);
  12. }

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

  1. /**
  2. * Gets the directionality of an element.
  3. *
  4. * @param elem the element on which to check the directionality property
  5. * @return <code>RTL</code> if the directionality is right-to-left,
  6. * <code>LTR</code> if the directionality is left-to-right, or
  7. * <code>DEFAULT</code> if the directionality is not explicitly set
  8. */
  9. public static HasDirection.Direction getDirectionOnElement(Element elem) {
  10. String dirPropertyValue = elem.getPropertyString(DIR_PROPERTY_NAME);
  11. if (DIR_PROPERTY_VALUE_RTL.equalsIgnoreCase(dirPropertyValue)) {
  12. return HasDirection.Direction.RTL;
  13. } else if (DIR_PROPERTY_VALUE_LTR.equalsIgnoreCase(dirPropertyValue)) {
  14. return HasDirection.Direction.LTR;
  15. }
  16. return HasDirection.Direction.DEFAULT;
  17. }

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

  1. private int findDividerIndex(Element elem) {
  2. while (elem != null && elem != getElement()) {
  3. String expando = elem.getPropertyString("__index");
  4. if (expando != null) {
  5. // Make sure it belongs to me!
  6. int ownerHash = elem.getPropertyInt("__owner");
  7. if (ownerHash == hashCode()) {
  8. // Yes, it's mine.
  9. return Integer.parseInt(expando);
  10. } else {
  11. // It must belong to some nested StackPanel.
  12. return -1;
  13. }
  14. }
  15. elem = DOM.getParent(elem);
  16. }
  17. return -1;
  18. }

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

  1. /**
  2. * Determines the TD associated with the specified event.
  3. *
  4. * @param event the event to be queried
  5. * @return the TD associated with the event, or <code>null</code> if none is
  6. * found.
  7. */
  8. protected com.google.gwt.user.client.Element getEventTargetCell(Event event) {
  9. Element td = DOM.eventGetTarget(event);
  10. for (; td != null; td = DOM.getParent(td)) {
  11. // If it's a TD, it might be the one we're looking for.
  12. if (td.getPropertyString("tagName").equalsIgnoreCase("td")) {
  13. // Make sure it's directly a part of this table before returning
  14. // it.
  15. Element tr = DOM.getParent(td);
  16. Element body = DOM.getParent(tr);
  17. if (body == bodyElem) {
  18. return DOM.asOld(td);
  19. }
  20. }
  21. // If we run into this table's body, we're out of options.
  22. if (td == bodyElem) {
  23. return null;
  24. }
  25. }
  26. return null;
  27. }

代码示例来源:origin: com.googlecode.gwt-test-utils/gwt-test-utils

  1. /**
  2. * Gets all of the element's style names, as a space-separated list.
  3. *
  4. * @param elem the element whose style is to be retrieved
  5. * @return the objects's space-separated style names
  6. */
  7. public static String getStyleName(Element element) {
  8. return element.getPropertyString("className");
  9. }

代码示例来源:origin: gwt-test-utils/gwt-test-utils

  1. /**
  2. * Gets all of the element's style names, as a space-separated list.
  3. *
  4. * @param elem the element whose style is to be retrieved
  5. * @return the objects's space-separated style names
  6. */
  7. public static String getStyleName(Element element) {
  8. return element.getPropertyString("className");
  9. }

代码示例来源:origin: ltearno/hexa.tools

  1. public String getValueAsString()
  2. {
  3. return input.getPropertyString( "value" );
  4. }
  5. }

代码示例来源:origin: fr.lteconsulting/hexa.core

  1. public String getValueAsString()
  2. {
  3. return input.getPropertyString( "value" );
  4. }
  5. }

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

  1. public String getHTML() {
  2. return elem.getPropertyString("value");
  3. }

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

  1. /**
  2. * Gets any named property from an element, as a string.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param prop the name of the property
  6. * @return the property's value
  7. * @deprecated Use {@link Element#getProperty(String)} instead.
  8. */
  9. @Deprecated
  10. public static String getElementProperty(Element elem, String prop) {
  11. return elem.getPropertyString(prop);
  12. }

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

  1. /**
  2. * Gets any named property from an element, as a string.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param prop the name of the property
  6. * @return the property's value
  7. * @deprecated Use {@link Element#getProperty(String)} instead.
  8. */
  9. @Deprecated
  10. public static String getElementProperty(Element elem, String prop) {
  11. return elem.getPropertyString(prop);
  12. }

代码示例来源:origin: com.sksamuel.jqm4gwt/jqm4gwt-standalone

  1. public static boolean hasStyle(Element elt, String style) {
  2. if (elt == null) return false;
  3. String styles = elt.getPropertyString("className");
  4. return styles != null && (indexOfName(styles, style) >= 0);
  5. }

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

  1. public static boolean hasStyle(Element elt, String style) {
  2. if (elt == null) return false;
  3. String styles = elt.getPropertyString("className");
  4. return styles != null && (indexOfName(styles, style) >= 0);
  5. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-toolkit

  1. public String getText() {
  2. return getTextArea().getPropertyString("value");
  3. }

代码示例来源:origin: com.sksamuel.jqm4gwt/jqm4gwt-library

  1. public static boolean hasStyle(Element elt, String style) {
  2. if (elt == null) return false;
  3. String styles = elt.getPropertyString("className");
  4. return styles != null && (indexOfName(styles, style) >= 0);
  5. }

代码示例来源:origin: org.drools/drools-wb-guided-rule-editor-client

  1. public String getFormId() {
  2. return this.getExternalFrameElement( "cf_id" ).getPropertyString( "value" );
  3. }

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

  1. public static void removeStylesStartsWith(Element elt, String startsWith) {
  2. if (elt == null || startsWith == null || startsWith.isEmpty()) return;
  3. String oldStyles = elt.getPropertyString("className");
  4. String newStyles = removeStylesStartsWith(oldStyles, startsWith);
  5. if (!StrUtils.equals(oldStyles, newStyles)) {
  6. elt.setPropertyString("className", newStyles);
  7. }
  8. }

相关文章

Element类方法