com.android.dx.rop.annotation.Annotations.throwIfMutable()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(150)

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

Annotations.throwIfMutable介绍

暂无

代码示例

代码示例来源:origin: com.android/dx

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: com.google.dexmaker/dexmaker-dx

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: dragome/dragome-sdk

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   * 
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: nikita36078/J2ME-Loader

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: com.android.tools.build/builder

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: com.jakewharton.android.repackaged/dalvik-dx

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: com.google.android.tools/dx

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

代码示例来源:origin: gdpancheng/LoonAndroid3

/**
   * Sets the element at the given index. The given element must be
   * immutable.
   *
   * @param n {@code >= 0, < size();} which index
   * @param a {@code null-ok;} the element to set at {@code n}
   */
  public void set(int n, Annotations a) {
    a.throwIfMutable();
    set0(n, a);
  }
}

相关文章