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

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

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

Element.indexOfName介绍

[英]Returns the index of the first occurrence of name in a space-separated list of names, or -1 if not found.
[中]返回名称列表中第一次出现的名称的索引,如果未找到,则返回-1。

代码示例

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

  1. /**
  2. * Checks if this element's class property contains specified class name.
  3. *
  4. * @param className the class name to be added
  5. * @return <code>true</code> if this element has the specified class name
  6. */
  7. public final boolean hasClassName(String className) {
  8. className = trimClassName(className);
  9. int idx = indexOfName(getClassName(), className);
  10. return idx != -1;
  11. }

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

  1. int idx = indexOfName(oldStyle, className);

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

  1. /**
  2. * Adds a name to this element's class property. If the name is already
  3. * present, this method has no effect.
  4. *
  5. * @param className the class name to be added
  6. * @return <code>true</code> if this element did not already have the specified class name
  7. * @see #setClassName(String)
  8. */
  9. public final boolean addClassName(String className) {
  10. className = trimClassName(className);
  11. // Get the current style string.
  12. String oldClassName = getClassName();
  13. int idx = indexOfName(oldClassName, className);
  14. // Only add the style if it's not already present.
  15. if (idx == -1) {
  16. if (oldClassName.length() > 0) {
  17. setClassName(oldClassName + " " + className);
  18. } else {
  19. setClassName(className);
  20. }
  21. return true;
  22. }
  23. return false;
  24. }

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

  1. /**
  2. * Checks if this element's class property contains specified class name.
  3. *
  4. * @param className the class name to be added
  5. * @return <code>true</code> if this element has the specified class name
  6. */
  7. public final boolean hasClassName(String className) {
  8. className = trimClassName(className);
  9. int idx = indexOfName(getClassName(), className);
  10. return idx != -1;
  11. }

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

  1. /**
  2. * Checks if this element's class property contains specified class name.
  3. *
  4. * @param className the class name to be added
  5. * @return <code>true</code> if this element has the specified class name
  6. */
  7. public final boolean hasClassName(String className) {
  8. className = trimClassName(className);
  9. int idx = indexOfName(getClassName(), className);
  10. return idx != -1;
  11. }

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

  1. int idx = indexOfName(oldStyle, className);

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

  1. int idx = indexOfName(oldStyle, className);

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

  1. /**
  2. * Adds a name to this element's class property. If the name is already
  3. * present, this method has no effect.
  4. *
  5. * @param className the class name to be added
  6. * @return <code>true</code> if this element did not already have the specified class name
  7. * @see #setClassName(String)
  8. */
  9. public final boolean addClassName(String className) {
  10. className = trimClassName(className);
  11. // Get the current style string.
  12. String oldClassName = getClassName();
  13. int idx = indexOfName(oldClassName, className);
  14. // Only add the style if it's not already present.
  15. if (idx == -1) {
  16. if (oldClassName.length() > 0) {
  17. setClassName(oldClassName + " " + className);
  18. } else {
  19. setClassName(className);
  20. }
  21. return true;
  22. }
  23. return false;
  24. }

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

  1. /**
  2. * Adds a name to this element's class property. If the name is already
  3. * present, this method has no effect.
  4. *
  5. * @param className the class name to be added
  6. * @return <code>true</code> if this element did not already have the specified class name
  7. * @see #setClassName(String)
  8. */
  9. public final boolean addClassName(String className) {
  10. className = trimClassName(className);
  11. // Get the current style string.
  12. String oldClassName = getClassName();
  13. int idx = indexOfName(oldClassName, className);
  14. // Only add the style if it's not already present.
  15. if (idx == -1) {
  16. if (oldClassName.length() > 0) {
  17. setClassName(oldClassName + " " + className);
  18. } else {
  19. setClassName(className);
  20. }
  21. return true;
  22. }
  23. return false;
  24. }

相关文章

Element类方法