Home
last modified time | relevance | path

Searched refs:bootstrap_methods (Results 1 – 1 of 1) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DBootstrapMethods.java35 …private BootstrapMethod[] bootstrap_methods; // TODO this could be made final (setter is not used) field in BootstrapMethods
52 …ods(final int name_index, final int length, final BootstrapMethod[] bootstrap_methods, final Const… in BootstrapMethods() argument
54 this.bootstrap_methods = bootstrap_methods; in BootstrapMethods()
70 bootstrap_methods = new BootstrapMethod[num_bootstrap_methods]; in BootstrapMethods()
72 bootstrap_methods[i] = new BootstrapMethod(input); in BootstrapMethods()
80 return bootstrap_methods; in getBootstrapMethods()
86 public final void setBootstrapMethods(final BootstrapMethod[] bootstrap_methods) { in setBootstrapMethods() argument
87 this.bootstrap_methods = bootstrap_methods; in setBootstrapMethods()
104 c.bootstrap_methods = new BootstrapMethod[bootstrap_methods.length]; in copy()
106 for (int i = 0; i < bootstrap_methods.length; i++) { in copy()
[all …]