Lines Matching defs:builder

49  * <b>javax.management.builder.initial</b> system property.
68 * <p>The <b>javax.management.builder.initial</b> system property is
78 * the <b>javax.management.builder.initial</b> system property is reset to
98 * The builder that will be used to construct MBeanServers.
101 private static MBeanServerBuilder builder = null;
105 * @param builder The new MBeanServerBuilder that will be used to
107 * @exception IllegalArgumentException if the given builder is null.
115 // setMBeanServerBuilder(MBeanServerBuilder builder) {
117 // MBeanServerFactory.builder = builder;
132 // return builder;
179 * <code>javax.management.builder.initial</code> exists but the
181 * no-argument constructor; or if the instantiated builder returns
187 * <code>javax.management.builder.initial</code> exists and can be
216 * <code>javax.management.builder.initial</code> exists but the
218 * no-argument constructor; or if the instantiated builder returns
224 * <code>javax.management.builder.initial</code> exists and can be
260 * <code>javax.management.builder.initial</code> exists but the
262 * no-argument constructor; or if the instantiated builder returns
268 * <code>javax.management.builder.initial</code> exists and can be
299 * <code>javax.management.builder.initial</code> exists but the
301 * no-argument constructor; or if the instantiated builder returns
307 * <code>javax.management.builder.initial</code> exists and can be
314 // Get the builder. Creates a new one if necessary.
436 * Load the builder class through the context class loader.
437 * @param builderClassName The name of the builder class.
454 * Creates the initial builder according to the
455 * javax.management.builder.initial System property - if specified.
474 * Instantiate a new builder according to the
475 * javax.management.builder.initial System property - if needed.
490 // Check whether a new builder needs to be created
491 if (builder != null) {
492 final Class<?> builderClass = builder.getClass();
494 return; // no need to create a new builder...
497 // Create a new builder
498 builder = newBuilder(newBuilderClass);
523 * javax.management.builder.initial property.
525 * This method consults the property and instantiates a new builder
532 * a new builder.
533 * @exception JMRuntimeException if the builder instantiation
540 return builder;