Home | History | Annotate | Download | only in reflect

Lines Matching refs:flag

42  * a flag controlling access checks for these objects. By default, accessing a
46 * operation is not permitted. If the accessible flag is set to true, these
58 boolean flag = false;
77 * Attempts to set the value of the accessible flag for all the objects in
79 * flag to {@code false} will enable access checks, setting to {@code true}
84 * @param flag
85 * the new value for the accessible flag
89 public static void setAccessible(AccessibleObject[] objects, boolean flag) {
92 object.flag = flag;
107 * performed. Returns the accessible flag.
113 return flag;
117 * Attempts to set the value of the accessible flag. Setting this flag to
121 * @param flag
122 * the new value for the accessible flag
124 public void setAccessible(boolean flag) {
125 this.flag = flag;