Home
last modified time | relevance | path

Searched refs:BootstrapMethod (Results 1 – 2 of 2) 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)
52 …public BootstrapMethods(final int name_index, final int length, final BootstrapMethod[] bootstrap_… in BootstrapMethods()
67 this(name_index, length, (BootstrapMethod[]) null, constant_pool); in BootstrapMethods()
70 bootstrap_methods = new BootstrapMethod[num_bootstrap_methods]; in BootstrapMethods()
72 bootstrap_methods[i] = new BootstrapMethod(input); in BootstrapMethods()
79 public final BootstrapMethod[] getBootstrapMethods() { in getBootstrapMethods()
86 public final void setBootstrapMethods(final BootstrapMethod[] bootstrap_methods) { in setBootstrapMethods()
104 c.bootstrap_methods = new BootstrapMethod[bootstrap_methods.length]; in copy()
124 for (final BootstrapMethod bootstrap_method : bootstrap_methods) { in dump()
DBootstrapMethod.java36 public class BootstrapMethod implements Cloneable { class
48 public BootstrapMethod(final BootstrapMethod c) { in BootstrapMethod() method in BootstrapMethod
58 BootstrapMethod(final DataInput input) throws IOException { in BootstrapMethod() method in BootstrapMethod
67 private BootstrapMethod(final int bootstrap_method_ref, final int num_bootstrap_arguments) { in BootstrapMethod() method in BootstrapMethod
75 public BootstrapMethod(final int bootstrap_method_ref, final int[] bootstrap_arguments) { in BootstrapMethod() method in BootstrapMethod
161 public BootstrapMethod copy() { in copy()
163 return (BootstrapMethod) clone(); in copy()