本文整理了Java中com.android.dx.rop.annotation.Annotations.throwIfMutable()
方法的一些代码示例,展示了Annotations.throwIfMutable()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Annotations.throwIfMutable()
方法的具体详情如下:
包路径:com.android.dx.rop.annotation.Annotations
类名称: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);
}
}
内容来源于网络,如有侵权,请联系作者删除!