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

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

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

Element.getPropertyBoolean介绍

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

代码示例

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

  1. public boolean isEnabled() {
  2. return !elem.getPropertyBoolean("disabled");
  3. }

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

  1. /**
  2. * Gets any named property from an element, as a boolean.
  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 as a boolean
  7. * @deprecated Use {@link Element#getPropertyBoolean(String)} instead.
  8. */
  9. @Deprecated
  10. public static boolean getElementPropertyBoolean(Element elem, String prop) {
  11. return elem.getPropertyBoolean(prop);
  12. }

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

  1. /**
  2. * Gets a boolean 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. * @return the property's value as a boolean
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#getPropertyBoolean(String)} instead.
  9. */
  10. @Deprecated
  11. public static boolean getBooleanAttribute(Element elem, String attr) {
  12. return elem.getPropertyBoolean(attr);
  13. }

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

  1. @Override
  2. public boolean isEnabled() {
  3. return beforeInitPlaceholder == null ? isEnabledImpl()
  4. : !beforeInitPlaceholder.getPropertyBoolean("disabled");
  5. }

代码示例来源:origin: org.jbpm/jbpm-console-ng-generic-client

  1. /**
  2. * Returns true if the element has the disabled attribute.
  3. */
  4. public static boolean isEnabled(Element element) {
  5. return element.getPropertyBoolean("disabled");
  6. }

代码示例来源:origin: com.googlecode.gwtquery/gwtquery

  1. public boolean f(Element e, int index) {
  2. return e.getPropertyBoolean("selected");
  3. }
  4. });

代码示例来源:origin: kiegroup/jbpm-wb

  1. /**
  2. * Returns true if the element has the disabled attribute.
  3. */
  4. public static boolean isEnabled(Element element) {
  5. return element.getPropertyBoolean("disabled");
  6. }
  7. }

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

  1. public boolean isEnabled() {
  2. return !elem.getPropertyBoolean("disabled");
  3. }

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

  1. public boolean isEnabled() {
  2. return !elem.getPropertyBoolean("disabled");
  3. }

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

  1. /**
  2. * Gets a boolean 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. * @return the property's value as a boolean
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#getPropertyBoolean(String)} instead.
  9. */
  10. @Deprecated
  11. public static boolean getBooleanAttribute(Element elem, String attr) {
  12. return elem.getPropertyBoolean(attr);
  13. }

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

  1. /**
  2. * Gets any named property from an element, as a boolean.
  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 as a boolean
  7. * @deprecated Use {@link Element#getPropertyBoolean(String)} instead.
  8. */
  9. @Deprecated
  10. public static boolean getElementPropertyBoolean(Element elem, String prop) {
  11. return elem.getPropertyBoolean(prop);
  12. }

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

  1. /**
  2. * Gets any named property from an element, as a boolean.
  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 as a boolean
  7. * @deprecated Use {@link Element#getPropertyBoolean(String)} instead.
  8. */
  9. @Deprecated
  10. public static boolean getElementPropertyBoolean(Element elem, String prop) {
  11. return elem.getPropertyBoolean(prop);
  12. }

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

  1. /**
  2. * Gets a boolean 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. * @return the property's value as a boolean
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#getPropertyBoolean(String)} instead.
  9. */
  10. @Deprecated
  11. public static boolean getBooleanAttribute(Element elem, String attr) {
  12. return elem.getPropertyBoolean(attr);
  13. }

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

  1. @Override
  2. public boolean isEnabled() {
  3. return beforeInitPlaceholder == null ? isEnabledImpl()
  4. : !beforeInitPlaceholder.getPropertyBoolean("disabled");
  5. }

代码示例来源:origin: com.googlecode.gwtquery/gwtquery

  1. /**
  2. * Only valid for IE6-8.
  3. * @param event
  4. * @return
  5. */
  6. private boolean isEventPropagationStopped(Event event) {
  7. // trick to avoid jnsi
  8. return event.<Element> cast().getPropertyBoolean("cancelBubble");
  9. }

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

  1. @Override
  2. public boolean isEnabled() {
  3. return beforeInitPlaceholder == null ? isEnabledImpl()
  4. : !beforeInitPlaceholder.getPropertyBoolean("disabled");
  5. }

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

  1. private static boolean isDisabled(Element element) {
  2. return element.getPropertyBoolean("disabled")
  3. || element.getClassName().contains("gwt-CheckBox-disabled");
  4. }

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

  1. private static boolean isDisabled(Element element) {
  2. return element.getPropertyBoolean("disabled")
  3. || element.getClassName().contains("gwt-CheckBox-disabled");
  4. }

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

  1. case Event.ONCLICK:
  2. if (BrowserInfo.get().getWebkitVersion() > 0
  3. && targetElement.getPropertyBoolean("__cell")) {
  4. scrollBodyPanel.setFocus(true);

相关文章

Element类方法